<div dir="ltr">...or rather, it would answer '/path/to/opened/folder/nil' instead of nil. With this change, nil is answered from getUserResponse when nothing was actually selected. That means clicking accept without having selected anything is the same as clicking cancel, at least concerning the return value of FileSaverDialog class>>openOn:.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Am So., 3. Feb. 2019 um 00:03 Uhr schrieb <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">A new version of ToolBuilder-Morphic was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/ToolBuilder-Morphic-jr.225.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/inbox/ToolBuilder-Morphic-jr.225.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: ToolBuilder-Morphic-jr.225<br>
Author: jr<br>
Time: 3 February 2019, 12:02:36.955839 am<br>
UUID: f93f39b3-2e20-ea44-b023-1ec44691e5e1<br>
Ancestors: ToolBuilder-Morphic-mt.224<br>
<br>
Fix: FileSaverDialog would answer 'nil' instead of nil when nothing was done except for accepting the dialog<br>
<br>
=============== Diff against ToolBuilder-Morphic-mt.224 ===============<br>
<br>
Item was changed:<br>
  ----- Method: FileSaverDialog>>inputText: (in category 'filename') -----<br>
  inputText: aText <br>
        "Initialize the filename entry field to aString.  If a file with that name already exists, set up to highlight it."<br>
+       aText ifNil: [^ self].<br>
        fileName := aText asString.<br>
        self selectExistingFilename!<br>
<br>
<br>
</blockquote></div>