IDE: save/restore size of "Select profiles to build" window of "Build Lazarus" dialog

(cherry picked from commit 5c5693e6be)
This commit is contained in:
Maxim Ganetsky 2023-11-24 18:41:06 +03:00
parent ade813f1be
commit 2d68d935f7

View File

@ -1467,6 +1467,7 @@ begin
if fProfiles.Selected.IndexOf(fProfiles[i].Name)>-1 then
EditForm.CheckListBox1.Checked[ind]:=True;
end;
IDEDialogLayoutList.ApplyLayout(EditForm);
// Show the form.
EditForm.ShowModal;
if EditForm.ModalResult in [mrOK, mrYes] then begin
@ -1480,6 +1481,7 @@ begin
if EditForm.ModalResult=mrYes then
ModalResult:=mrAll;
finally
IDEDialogLayoutList.SaveLayout(EditForm);
EditForm.Free;
end;
end;
@ -1553,6 +1555,7 @@ end;
procedure TConfigureBuildLazarusDlg.CleanRadioButtonClick(Sender: TObject);
begin
//
end;
end.