1
0
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:
Merlijn Wajer 2010-03-13 13:17:04 +01:00
parent 69899f58fa
commit 25fbd55694

View File

@ -2251,8 +2251,14 @@ begin
begin begin
Result := (ScriptFile <> ''); Result := (ScriptFile <> '');
if Result then if Result then
begin; begin
SynEdit.Lines.SaveToFile(ScriptFile); try
SynEdit.Lines.SaveToFile(ScriptFile);
except
mDebugLn('Cannot save the file. Try specifying a different location.');
result := SaveCurrentScriptAs;
exit;
end;
OnSaveScript(scriptfile); OnSaveScript(scriptfile);
end end
else else