[squeak-dev] The Trunk: Morphic-mt.1872.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Feb 5 18:53:07 UTC 2022


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

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

Name: Morphic-mt.1872
Author: mt
Time: 5 February 2022, 7:53:02.061366 pm
UUID: 0f21c94a-93e6-a04b-b018-c372c3c8d0d2
Ancestors: Morphic-mt.1871

Fixes regression in FontImporterTool regarding #selectedFontTextStyle and its compatibility with #isSymbolFont.

=============== Diff against Morphic-mt.1871 ===============

Item was changed:
  ----- Method: FontImporterTool>>selectedFontTextStyle (in category 'font list') -----
  selectedFontTextStyle
  
+ 	| font |
+ 	^ (font := self selectedFont) isSymbolFont
+ 		ifFalse: [TextStyle fontArray: {font}]
+ 		ifTrue: [TextStyle default copy]!
- 	^ TextStyle fontArray: {self selectedFont}!



More information about the Squeak-dev mailing list