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

commits at source.squeak.org commits at source.squeak.org
Sat Apr 4 10:48:35 UTC 2015


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

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

Name: Morphic-mt.821
Author: mt
Time: 4 April 2015, 12:46:52.633 pm
UUID: cd5ac07c-7925-904f-ae85-07acb41cf7a3
Ancestors: Morphic-mt.820

Added nil-check to color adoption in system window. (Note: We have to get rid of those color-to-nil settings...)

=============== Diff against Morphic-mt.820 ===============

Item was changed:
  ----- Method: SystemWindow>>adoptPaneColor: (in category 'colors handling') -----
  adoptPaneColor: aPaneColor
  
  	super adoptPaneColor: (self class gradientWindow
+ 		ifTrue: [aPaneColor ifNotNil: [:c | c duller]]
+ 		ifFalse: [aPaneColor ifNotNil: [:c | c duller]]).!
- 		ifTrue: [aPaneColor duller]
- 		ifFalse: [aPaneColor]).!



More information about the Squeak-dev mailing list