The Trunk: EToys-ct.354.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-ct.354.mcz

commits-2
Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/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!