[Pkg] The Trunk: Morphic-mt.1298.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 24 08:55:36 UTC 2016


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

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

Name: Morphic-mt.1298
Author: mt
Time: 24 August 2016, 10:54:46.509003 am
UUID: b1016b43-3e51-5b49-a326-8ebf48b81e78
Ancestors: Morphic-mt.1297

Remove use of ColorTheme.

=============== Diff against Morphic-mt.1297 ===============

Item was changed:
  ----- Method: Morph>>helpButton (in category 'menus') -----
  helpButton
  	"Answer a button whose action would be to put up help concerning the receiver"
  
  	| aButton |
  	aButton := SimpleButtonMorph new.
  	aButton
  		target: self;
+ 		color: Color lightGreen;
+ 		borderColor: Color lightGreen muchDarker;
- 		color: ColorTheme current helpColor;
- 		borderColor: ColorTheme current helpColor muchDarker;
  		borderWidth: 1;
  		label: '?' translated font: Preferences standardButtonFont;
  		actionSelector: #presentHelp;
  		setBalloonText: 'click here for help' translated.
  	^ aButton!



More information about the Packages mailing list