Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.416.mcz==================== Summary ====================
Name: EToys-mt.416
Author: mt
Time: 13 January 2021, 4:38:11.621847 pm
UUID: 27def810-ffb2-7b47-8af1-c264f29c9bd3
Ancestors: EToys-pre.415
Fixes minor layout issue.
=============== Diff against EToys-pre.415 ===============
Item was added:
+ ----- Method: NumericReadoutTile>>minWidth (in category 'misc') -----
+ minWidth
+ ^ 40!
Item was removed:
- ----- Method: NumericReadoutTile>>minimumWidth (in category 'misc') -----
- minimumWidth
- ^ 40!
Item was added:
+ ----- Method: TileMorph>>minWidth (in category 'misc') -----
+ minWidth
+ | aWidth |
+ aWidth := self basicWidth.
+ upArrow ifNotNil: [aWidth := aWidth + UpArrowAllowance].
+ suffixArrow ifNotNil: [aWidth := aWidth + SuffixArrowAllowance].
+ ^ aWidth
+ !
Item was removed:
- ----- Method: TileMorph>>minimumWidth (in category 'misc') -----
- minimumWidth
- | aWidth |
- aWidth := self basicWidth.
- upArrow ifNotNil: [aWidth := aWidth + UpArrowAllowance].
- suffixArrow ifNotNil: [aWidth := aWidth + SuffixArrowAllowance].
- ^ aWidth
- !