The Trunk: ToolBuilder-Morphic-jr.225.mcz

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

The Trunk: ToolBuilder-Morphic-jr.225.mcz

commits-2
Patrick Rein uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-jr.225.mcz

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

Name: ToolBuilder-Morphic-jr.225
Author: jr
Time: 3 February 2019, 12:02:36.955839 am
UUID: f93f39b3-2e20-ea44-b023-1ec44691e5e1
Ancestors: ToolBuilder-Morphic-mt.224

Fix: FileSaverDialog would answer 'nil' instead of nil when nothing was done except for accepting the dialog

=============== Diff against ToolBuilder-Morphic-mt.224 ===============

Item was changed:
  ----- Method: FileSaverDialog>>inputText: (in category 'filename') -----
  inputText: aText
  "Initialize the filename entry field to aString.  If a file with that name already exists, set up to highlight it."
+ aText ifNil: [^ self].
  fileName := aText asString.
  self selectExistingFilename!