A new version of EToys was added to project The Inbox:
http://source.squeak.org/inbox/EToys-ct.354.mcz==================== Summary ====================
Name: EToys-ct.354
Author: ct
Time: 6 September 2019, 12:55:43.866698 pm
UUID: dd3f110c-e574-1549-b382-4848dabda9d9
Ancestors: EToys-pre.353
Simplify help display of FreeCell (Etoys has also depended on ToolBuilder before)
=============== Diff against EToys-pre.353 ===============
Item was changed:
----- Method: FreeCell>>help (in category 'actions') -----
help
+
+ self helpText editWithLabel: 'FreeCell Help'.!
- | window helpMorph |
- window := SystemWindow labelled: 'FreeCell Help' translated.
- window model: self.
- helpMorph := (PluggableTextMorph new editString: self helpText) lock.
- window
- addMorph: helpMorph
- frame: (0 @ 0 extent: 1 @ 1).
- window openInWorld!