Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.823.mcz==================== Summary ====================
Name: Morphic-mt.823
Author: mt
Time: 4 April 2015, 1:06:28.001 pm
UUID: 2a9f2a6f-7774-8a46-9344-1d390155d562
Ancestors: Morphic-mt.822
Update all open windows' colors if the prefrence "gradient windows" is changed.
=============== Diff against Morphic-mt.822 ===============
Item was changed:
----- Method: SystemWindow class>>gradientWindow: (in category 'preferences') -----
gradientWindow: aBoolean
+ aBoolean = GradientWindow ifTrue: [^ self].
+ GradientWindow := aBoolean.
+ self refreshAllWindows.!
- GradientWindow := aBoolean.!
Item was added:
+ ----- Method: SystemWindow class>>refreshAllWindows (in category 'initializing') -----
+ refreshAllWindows
+ "If there is some prominent UI change, use this method to update all open windows."
+
+ SystemWindow allSubInstances do: [:w | w refreshWindowColor].!