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

commits at source.squeak.org commits at source.squeak.org
Sun Feb 27 07:40:52 UTC 2022


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

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

Name: TrueType-mt.75
Author: mt
Time: 27 February 2022, 8:40:53.173726 am
UUID: 04f4f27b-dadc-2142-b9ca-0f1b70152802
Ancestors: TrueType-mt.74

Adds missing selectors to (legacy) TTCFontSet.

=============== Diff against TrueType-mt.74 ===============

Item was added:
+ ----- Method: TTCFontSet>>extraGlyphScale: (in category 'editing') -----
+ extraGlyphScale: aFactor
+ 
+ 	^ fontArray do: [:font | font extraGlyphScale: aFactor]!

Item was added:
+ ----- Method: TTCFontSet>>extraLineGap: (in category 'editing') -----
+ extraLineGap: aNumber
+ 
+ 	^ fontArray do: [:font | font extraLineGap: aNumber]!

Item was added:
+ ----- Method: TTCFontSet>>privateExtraGlyphScale: (in category 'editing') -----
+ privateExtraGlyphScale: aFactor
+ 
+ 	^ fontArray do: [:font | font privateExtraGlyphScale: aFactor]!

Item was added:
+ ----- Method: TTCFontSet>>privateExtraLineGap: (in category 'editing') -----
+ privateExtraLineGap: aNumber
+ 
+ 	^ fontArray do: [:font | font privateExtraLineGap: aNumber]!



More information about the Squeak-dev mailing list