The Trunk: MorphicExtras-nice.119.mcz

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

The Trunk: MorphicExtras-nice.119.mcz

commits-2
Nicolas Cellier uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-nice.119.mcz

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

Name: MorphicExtras-nice.119
Author: nice
Time: 27 September 2013, 1:02:28.291 am
UUID: 3015d704-ca1f-4851-938b-9341b2a8bb56
Ancestors: MorphicExtras-fbs.118

Finish stopConditions cleaning (well, at least the #space problem)

=============== Diff against MorphicExtras-fbs.118 ===============

Item was removed:
- ----- Method: CanvasCharacterScanner>>setStopConditions (in category 'stop conditions') -----
- setStopConditions
- "Set the font and the stop conditions for the current run."
-
- self setFont.
- self setConditionArray: (alignment = Justified ifTrue: [#paddedSpace]).
- !

Item was added:
+ ----- Method: CanvasCharacterScanner>>space (in category 'stop conditions') -----
+ space
+ "Each space is a stop condition"
+
+ destX := destX + spaceWidth.
+ lastIndex := lastIndex + 1.
+ pendingKernX := 0.
+ ^ false!