mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 01:02:17 -05:00
Don't error when file directory doesn't exist.
Instead, ask for a new place to save to.
This commit is contained in:
parent
69899f58fa
commit
25fbd55694
@ -2251,8 +2251,14 @@ begin
|
||||
begin
|
||||
Result := (ScriptFile <> '');
|
||||
if Result then
|
||||
begin;
|
||||
SynEdit.Lines.SaveToFile(ScriptFile);
|
||||
begin
|
||||
try
|
||||
SynEdit.Lines.SaveToFile(ScriptFile);
|
||||
except
|
||||
mDebugLn('Cannot save the file. Try specifying a different location.');
|
||||
result := SaveCurrentScriptAs;
|
||||
exit;
|
||||
end;
|
||||
OnSaveScript(scriptfile);
|
||||
end
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user