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

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

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

Name: Morphic-mt.1204
Author: mt
Time: 28 July 2016, 1:15:31.997105 pm
UUID: 3969d0bd-e244-6d44-94e2-da5263abe41a
Ancestors: Morphic-mt.1203

Fixes some code that is used when refreshing the window colors after a preference change.

=============== Diff against Morphic-mt.1203 ===============

Item was changed:
  ----- Method: SystemWindow>>refreshWindowColor (in category 'colors') -----
  refreshWindowColor
  "For changing the underlying model's default window color"
  self setProperty: #paneColor toValue: nil.
  self setWindowColor: self paneColor.
 
+ self isLookingFocused
+ ifTrue: [self lookUnfocused; lookFocused]
+ ifFalse: [self lookFocused; lookUnfocused].!
- "Reset colors if we are not active."
- self isKeyWindow ifFalse: [
- self paneColorToUseWhenNotActive in: [:c |
- self
- setStripeColorsFrom: c;
- adoptPaneColor: c]].!