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

commits at source.squeak.org commits at source.squeak.org
Tue Aug 25 09:52:31 UTC 2015


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

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

Name: Morphic-mt.999
Author: mt
Time: 25 August 2015, 11:51:57.2 am
UUID: 342432f2-3b6b-3a42-8c0e-3f58305354ad
Ancestors: Morphic-mt.998

Fixes a bug with wrong Z order of morphs in system windows. There is no need to update pane order because retractable scroll bars got fixed.

=============== Diff against Morphic-mt.998 ===============

Item was changed:
  ----- Method: SystemWindow>>addMorph:fullFrame: (in category 'panes') -----
  addMorph: aMorph fullFrame: aLayoutFrame
  	"Add aMorph according to aLayoutFrame."
  
  	super addMorph: aMorph fullFrame: aLayoutFrame.
  
  	paneMorphs := paneMorphs copyReplaceFrom: 1 to: 0 with: (Array with: aMorph).
+ 	aMorph isImageMorph ifFalse: [aMorph adoptPaneColor: self paneColor].!
- 	aMorph isImageMorph ifFalse: [aMorph adoptPaneColor: self paneColor].
- 	Preferences scrollBarsOnRight ifTrue:"reorder panes so flop-out right-side scrollbar is visible"
- 		[self addMorphBack: aMorph].!



More information about the Squeak-dev mailing list