[squeak-dev] The Trunk: Morphic-ct.2039.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 13 07:12:36 UTC 2022


Christoph Thiede uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ct.2039.mcz

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

Name: Morphic-ct.2039
Author: ct
Time: 13 September 2022, 9:12:32.874523 am
UUID: 1a114662-bba8-114c-b88d-eb610d393157
Ancestors: Morphic-ct.2038

Improves high-dpi support for Etoys icons.

=============== Diff against Morphic-ct.2038 ===============

Item was changed:
  ----- Method: StandardScriptingSystem>>formAtKey: (in category 'form dictionary') -----
  formAtKey: aString
  	"Answer the form saved under the given key"
  
+ 	^((Symbol lookup: aString)
- 	^(Symbol lookup: aString)
  		ifNotNil: [ :aKey | FormDictionary at: aKey ifAbsent: [ FormDictionary at: #Cat ] ]
+ 		ifNil: [ FormDictionary at: #Cat ])
+ 			magnifyBy: RealEstateAgent scaleFactor!
- 		ifNil: [ FormDictionary at: #Cat ]!



More information about the Squeak-dev mailing list