From f9f950468823b276124685654c0a2f7ad178df60 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 20 Jan 2017 09:56:10 +0100 Subject: [PATCH] fix upstream reg introduced in 6d48342da037cb5ecfb496357afa58d79866ee48 the summary didn't detect the unsaved runnables --- src/ce_main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_main.pas b/src/ce_main.pas index 98e1b104..35dda090 100644 --- a/src/ce_main.pas +++ b/src/ce_main.pas @@ -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;