The Trunk: Morphic-mt.1001.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-mt.1001.mcz

commits-2
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1001.mcz

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

Name: Morphic-mt.1001
Author: mt
Time: 27 August 2015, 12:00:06.056 pm
UUID: 09790a69-7468-e04e-9b57-5410ffe88001
Ancestors: Morphic-mt.1000

Fixes a regression where scroll panes want to grow but the parent morph does not update its layout accordingly.

=============== Diff against Morphic-mt.1000 ===============

Item was changed:
  ----- Method: ScrollPane>>extent: (in category 'geometry') -----
  extent: aPoint
 
  self handleResizeAction: [
  (bounds extent closeTo: aPoint)
  ifTrue: [false]
  ifFalse: [
  super extent: aPoint.
+ owner ifNotNil: [owner layoutChanged].
- super layoutChanged.
  true]].!