fix upstream reg introduced in 6d48342da0

the summary didn't detect the unsaved runnables
This commit is contained in:
Basile Burg 2017-01-20 09:56:10 +01:00
parent 07a28480e2
commit f9f9504688
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 1 additions and 1 deletions

View File

@ -1870,7 +1870,7 @@ begin
for i := 0 to fMultidoc.documentCount-1 do
begin
d := fMultidoc.getDocument(i);
if d.modified then
if d.modified or (d.fileName = d.tempFilename) then
begin
files += #9 + shortenPath(d.filename) + LineEnding;
chang := true;