Etoys: Multilingual-kfr.18.mcz

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

Etoys: Multilingual-kfr.18.mcz

commits-2
Karl Ramberg uploaded a new version of Multilingual to project Etoys:
http://source.squeak.org/etoys/Multilingual-kfr.18.mcz

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

Name: Multilingual-kfr.18
Author: kfr
Time: 18 May 2011, 9:33:14 pm
UUID: b4a61c0e-aeff-ab43-86ff-2012e257f1e6
Ancestors: Multilingual-kfr.17

MultiTTCFont cache does not initialized
http://tracker.squeakland.org/browse/SQ-877

=============== Diff against Multilingual-kfr.17 ===============

Item was added:
+ ----- Method: MultiTTCFont>>foregroundColor: (in category 'all') -----
+ foregroundColor: fgColor
+ "Install the given foreground color"
+ foregroundColor := fgColor.!

Item was changed:
  ----- Method: MultiTTCFont>>formOf: (in category 'all') -----
  formOf: char
 
  | newForm |
+ cache ifNil: [ self recreateCache ].
+ foregroundColor ifNil: [ self foregroundColor: Color black ].
+
  self hasCached: char ifTrue: [:form |
  ^ form.
  ].
 
  newForm _ self computeForm: char.
  self at: char put: newForm.
  ^ newForm.
  !

_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev