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

commits-2
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]).!