Karl Ramberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-kfr.60.mcz==================== Summary ====================
Name: Morphic-kfr.60
Author: kfr
Time: 22 May 2011, 11:04:03 am
UUID: 49145a94-80c0-294d-b869-3f0949a74c2b
Ancestors: Morphic-kfr.59
Reverting the change
=============== Diff against Morphic-kfr.59 ===============
Item was changed:
----- Method: RulerMorph>>drawOn: (in category 'drawing') -----
+ drawOn: aCanvas
+
+ | s |
- drawOn: aCanvas
- | s aMorph |
super drawOn: aCanvas.
+ s _ self width printString, 'x', self height printString.
+ aCanvas drawString: s in: (bounds insetBy: borderWidth + 5) font: nil color: Color red.
+ !
- self isFlexed
- ifTrue: [aMorph := self owner]
- ifFalse: [aMorph := self].
- s := aMorph width printString , 'x' , aMorph height printString.
- aCanvas
- drawString: s
- in: (bounds insetBy: borderWidth + 5)
- font: nil
- color: Color red!
_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev