The Trunk: Morphic-kfr.959.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-kfr.959.mcz

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

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

Name: Morphic-kfr.959
Author: kfr
Time: 2 May 2015, 10:05:29.163 pm
UUID: c3010a30-ff64-574b-8497-227a9b1e75b5
Ancestors: Morphic-kfr.958

Added back drop shadow preference

=============== Diff against Morphic-kfr.958 ===============

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