The Trunk: EToys-kfr.125.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-kfr.125.mcz

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

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

Name: EToys-kfr.125
Author: kfr
Time: 3 May 2015, 4:47:39.239 pm
UUID: e8cd5fc0-7f73-0540-b1b6-65ae43abf6a4
Ancestors: EToys-mt.124

Fix Properties panel for the new color picker morph

=============== Diff against EToys-mt.124 ===============

Item was changed:
  ----- Method: GenericPropertiesMorph>>colorPickerFor:getter:setter: (in category 'as yet unclassified') -----
  colorPickerFor: target getter: getterSymbol setter: setterSymbol
  ^ NewColorPickerMorph useIt
  ifTrue:
  [ NewColorPickerMorph
  on: target
  originalColor: (target perform: getterSymbol)
+ setColorSelector: setterSymbol
+ forPropertiesPanel: true
+ ]
- setColorSelector: setterSymbol ]
  ifFalse:
  [ ColorPickerMorph new
  initializeForPropertiesPanel ;
  target: target ;
  selector: setterSymbol ;
  originalColor: (target perform: getterSymbol) ]!

Item was changed:
  ----- Method: ObjectPropertiesMorph>>tgt2ndGradientColor: (in category 'as yet unclassified') -----
  tgt2ndGradientColor: aColor
+ myTarget fillStyle isGradientFill ifFalse: [^Color black].
-
  myTarget fillStyle lastColor: aColor forMorph: myTarget hand: nil
  !