[squeak-dev] The Trunk: Morphic-laza.428.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Apr 26 08:44:54 UTC 2010


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!




More information about the Squeak-dev mailing list