The Trunk: Morphic-mtf.504.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-mtf.504.mcz

commits-2
Matthew Fulmer uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mtf.504.mcz

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

Name: Morphic-mtf.504
Author: mtf
Time: 31 December 2010, 4:27:36.223 pm
UUID: 8eec5c4e-fa11-964b-a7d9-833229c37b0e
Ancestors: Morphic-ar.503

added Color >> asMorph. imported from Cobalt:

Name: Morphic-jrd.26
Author: jrd
Time: 8 December 2010, 10:08:51 pm
UUID: 2e7e1e5b-7f98-4205-9f8a-61f48afb802c
Ancestors: Morphic-jrd.25

Changed:

- Recolored and repositioned systemprogressmorph to match cobalt requirtements.  Really needs to be doe a better way.
- Added utility method to color: asMorph. this is to make it easier to genratre color swatches.

=============== Diff against Morphic-ar.503 ===============

Item was added:
+ ----- Method: Color>>asMorph (in category '*Morphic') -----
+ asMorph
+
+ ^(RectangleMorph new)
+ fillStyle: self;
+ borderWidth: 0;
+ yourself!