From 0055054c5995fc6dbb83ad239904e2c89fb601b6 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 10 Nov 2015 15:58:58 +0100 Subject: [PATCH] fix, reload last proj, crash if last proj file didnt exist anymore --- 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 7a1eb30b..086327b6 100644 --- a/src/ce_main.pas +++ b/src/ce_main.pas @@ -505,7 +505,7 @@ begin itf := TCEMainForm(aDestination).fProjectInterface; if (itf <> nil) and (itf.filename = fProject) then exit; - if fProject <> '' then + if fProject <> '' then if FileExists(fProject) then TCEMainForm(aDestination).openProj(fProject); end else inherited;