[squeak-dev] The Trunk: TrueType-mt.82.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 3 13:46:28 UTC 2022


Marcel Taeumel uploaded a new version of TrueType to project The Trunk:
http://source.squeak.org/trunk/TrueType-mt.82.mcz

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

Name: TrueType-mt.82
Author: mt
Time: 3 March 2022, 2:46:26.800142 pm
UUID: 6689cc3c-69ea-be4f-8670-7af18c18d0e3
Ancestors: TrueType-mt.81

Make fallback glyph in remote fonts more robust by not assuming that code point 0 maps to the fallback glyph. I found a font that just did not do that.

=============== Diff against TrueType-mt.81 ===============

Item was changed:
  ----- Method: TTRemoteFontDescription>>fallbackGlyph (in category 'accessing - glyphs') -----
  fallbackGlyph
  
+ 	^ fallbackGlyph ifNil: [fallbackGlyph := self atGlyphIndex: 0]!
- 	^ fallbackGlyph ifNil: [fallbackGlyph := self at: 0]!



More information about the Squeak-dev mailing list