Patrick Rein uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-pre.226.mcz==================== Summary ====================
Name: ToolBuilder-Morphic-pre.226
Author: pre
Time: 29 April 2019, 8:34:39.917145 pm
UUID: 2f50877e-d948-2a4d-a14b-e73efca9711f
Ancestors: ToolBuilder-Morphic-jr.225
Fix: FileSaverDialog would answer 'nil' instead of nil when nothing was done except for accepting the dialog
Merged from inbox commit ToolBuilder-Morphic-jr.225
=============== 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!