[squeak-dev] The Trunk: Graphics-mt.504.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Mar 21 13:04:28 UTC 2022


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

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

Name: Graphics-mt.504
Author: mt
Time: 21 March 2022, 2:04:26.215989 pm
UUID: aba8ae05-f74d-4a90-b05f-b6473921af1f
Ancestors: Graphics-mt.503

Fixes issue around fallback fonts where no fallback was configured. See setDefaultFallback:. In that case, good old FixedFaceFont will be used.

=============== Diff against Graphics-mt.503 ===============

Item was changed:
  ----- Method: TextStyle class>>defaultFallback (in category 'constants') -----
  defaultFallback
  
+ 	^ (TextConstants at: #DefaultFallbackTextStyle ifAbsent: [])
+ 		ifNil: [self default]!
- 	^ TextConstants at: #DefaultFallbackTextStyle ifAbsent: [self default]!



More information about the Squeak-dev mailing list