The Trunk: Morphic-laza.419.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-laza.419.mcz

commits-2
Alexander Lazarević uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-laza.419.mcz

==================== Summary ====================

Name: Morphic-laza.419
Author: laza
Time: 8 April 2010, 11:29:18.363 am
UUID: 003e6423-947c-400e-9747-f8a31fa4405a
Ancestors: Morphic-ar.418

Addressing http://bugs.squeak.org/view.php?id=7213

=============== Diff against Morphic-ar.418 ===============

Item was changed:
  ----- Method: Morph>>extent: (in category 'geometry') -----
  extent: aPoint
 
+ (bounds extent closeTo: aPoint) ifTrue: [^ self].
- bounds extent = aPoint ifTrue: [^ self].
  self changed.
+ bounds := bounds topLeft extent: aPoint.
- bounds := (bounds topLeft extent: aPoint) rounded.
  self layoutChanged.
  self changed.
  !