1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
This commit is contained in:
Merlijn Wajer 2010-06-29 18:17:46 +02:00
parent 9517c35814
commit 02b7623e34
2 changed files with 7 additions and 0 deletions

View File

@ -314,10 +314,12 @@ begin
ecUndo : begin
Command:= ecNone;
Self.Undo;
Self.ScriptChanged:=True;
end;
ecRedo : begin
Command := ecNone;
self.Redo;
Self.ScriptChanged:=True;
end;
end;
end;

View File

@ -2954,6 +2954,11 @@ end;
function TSimbaForm.SaveCurrentScript: boolean;
begin
if not CurrScript.ScriptChanged then
begin
writeln('SaveScript - no changes.');
exit(false);
end;
with CurrScript do
begin
Result := (ScriptFile <> '');