Eliot Miranda uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-eem.990.mcz==================== Summary ====================
Name: Morphic-eem.990
Author: eem
Time: 1 July 2015, 3:14:20.524 pm
UUID: 0fb6f2b8-b89e-48e4-bf73-ab547b7b0d49
Ancestors: Morphic-cmm.989
Update the CurvierMorph's drawCurvier preference
to the recommended style., eliminating the only send of addPreference:category:default:balloonHelp:
in trunk outside of Preferences.
=============== Diff against Morphic-cmm.989 ===============
Item was removed:
- ----- Method: CurvierMorph class>>Curvier (in category 'class initialization') -----
- Curvier
- <preference: 'Curvier'
- category: 'morphic'
- description: 'If true, closed CurvierMorphs will be smoother and more symmetrical all about. If false they will mimic the old curve shapes with the one sharp bend.'
- type: #Boolean>
- ^ self drawCurvier.!
Item was changed:
----- Method: CurvierMorph class>>drawCurvier (in category 'class initialization') -----
drawCurvier
+ <preference: 'Curvier'
+ category: 'morphic'
+ description: 'If true, closed CurvierMorphs will be smoother and more symmetrical all about. If false they will mimic the old curve shapes with the one sharp bend.'
+ type: #Boolean>
+ ^DrawCurvier ifNil: [true]!
- ^ DrawCurvier.!
Item was changed:
----- Method: CurvierMorph class>>initialize (in category 'class initialization') -----
initialize
"CurvierMorph initialize"
- Preferences
- preferenceAt: #Curvier
- ifAbsent: [Preferences
- addPreference: #Curvier
- category: #morphic
- default: true
- balloonHelp: 'if true, closed CurvierMorphs will be smoother and more symmetrical all about. If false they will mimic the old curve shapes with the one sharp bend.'].
self registerInFlapsRegistry!