[squeak-dev] The Trunk: Morphic-mt.1001.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 27 10:01:07 UTC 2015


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]].!



More information about the Squeak-dev mailing list