Packager: Update editors only if Modified = True.

git-svn-id: trunk@46109 -
This commit is contained in:
juha 2014-09-02 21:35:20 +00:00
parent c5e69a4a97
commit b6accfde69

View File

@ -2589,7 +2589,7 @@ begin
PublishOptions.Modified:=false;
CompilerOptions.Modified:=false;
end;
if (OldModified<>Modified) and (Editor<>nil) then
if Modified and (not OldModified) and (Editor<>nil) then
Editor.UpdateAll(false);
end;