IDE: Do not clear messages before showing "Clean up and build project" dialog. Issue #41047, patch by n7800.

(cherry picked from commit 2fea4c39a2)
This commit is contained in:
Juha 2024-08-01 09:17:30 +03:00 committed by Maxim Ganetsky
parent 18f1d06255
commit 7330bf87c4

View File

@ -4586,9 +4586,8 @@ end;
procedure TMainIDE.mnuCleanUpAndBuildProjectClicked(Sender: TObject);
begin
if PrepareForCompileWithMsg<>mrOk then exit;
if ShowBuildProjectDialog(Project1)<>mrOk then exit;
DoBuildProject(crBuild,[]);
if ShowBuildProjectDialog(Project1) = mrOk then
DoBuildProject(crBuild, []);
end;
procedure TMainIDE.mnuBuildManyModesClicked(Sender: TObject);