The Trunk: Morphic-laza.428.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-laza.428.mcz

commits-2
Alexander Lazarević uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-laza.428.mcz

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

Name: Morphic-laza.428
Author: laza
Time: 26 April 2010, 10:43:25.292 am
UUID: 94cea554-1ebf-8f45-8cdd-b54b7a74518c
Ancestors: Morphic-ar.427

Avoid all gray icons in the tools menu of the dockbar with uniform window colors.

=============== Diff against Morphic-ar.427 ===============

Item was changed:
  ----- Method: TheWorldMainDockingBar>>colorIcon: (in category 'private') -----
  colorIcon: aColor
 
+ "Guess if 'uniform window colors' are used and avoid all icons to be just gray"
+ (aColor = Preferences uniformWindowColor or: [Preferences tinyDisplay]) ifTrue: [ ^nil ].
- Preferences tinyDisplay ifTrue: [ ^nil ].
  ^(aColor iconOrThumbnailOfSize: 14)
  borderWidth: 3 color: Preferences menuColor muchDarker;
  borderWidth: 2 color: Color transparent!