[squeak-dev] The Trunk: Morphic-kfr.958.mcz

commits at source.squeak.org commits at source.squeak.org
Sat May 2 17:20:14 UTC 2015


Karl Ramberg uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-kfr.958.mcz

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

Name: Morphic-kfr.958
Author: kfr
Time: 2 May 2015, 7:18:54.572 pm
UUID: 8235819e-0435-b142-aa1b-7676dd49a995
Ancestors: Morphic-mt.957

Couple of layout and color fixes to NewColorPickerMorph

=============== Diff against Morphic-mt.957 ===============

Item was changed:
  ----- Method: NewColorPickerMorph>>newCloseButton (in category 'initialize-release') -----
  newCloseButton
  	^ (PluggableButtonMorph
  		on: self
  		getState: nil
  		action: #delete
  		label: #closeButtonLabel)
  		 vResizing: #spaceFill ;
+ 		hResizing: #spaceFill;
  		 yourself!

Item was changed:
  ----- Method: NewColorPickerMorph>>setup (in category 'initialize-release') -----
  setup
  	self
+ 		 color: (Color white darker) ;
- 		 color: (Color white slightlyDarker alpha: 0.88) ;
  		 cornerStyle: #rounded ;
  		 changeTableLayout ;
+ 		 hResizing: #shrinkWrap ;
+ 		 vResizing: #shrinkWrap ;
- 		 hResizing: #rigid ;
- 		 vResizing: #rigid ;
  		 extent: 240 at 240 ;
  		 addMorphBack: hsvaMorph ;
  		 addMorphBack: self newColorExpressionMorph ;
  		 addMorphBack: self newBottomRow ;
  		 layoutInset: 4 ;
  		 cellInset: 2.
  		
+ 	!
- 	Preferences menuAppearance3d
- 		ifTrue: [self addDropShadow].!



More information about the Squeak-dev mailing list