IDE: Store the size of ProcedureList, like it is stored for other modal IDE windows. Issue #13570, patch from Markus.

git-svn-id: trunk@52732 -
This commit is contained in:
juha 2016-07-20 18:52:54 +00:00
parent ca88306bff
commit 9e440cb058

View File

@ -45,7 +45,7 @@ uses
// Codetools
CodeTree, CodeToolManager, CodeCache, PascalParserTool, KeywordFuncLists,
// IDEIntf
LazIDEIntf, IDEImagesIntf, SrcEditorIntf,
LazIDEIntf, IDEImagesIntf, SrcEditorIntf, IDEWindowIntf,
// IDE
LazarusIDEStrConsts;
@ -668,11 +668,14 @@ begin
PopulateObjectsCombo;
PopulateGrid;
StatusBar.Panels[0].Text := self.MainFilename;
IDEDialogLayoutList.ApplyLayout(Self, 950, 680, false);
end;
procedure TProcedureListForm.FormDestroy(Sender: TObject);
begin
ClearGrid;
IDEDialogLayoutList.SaveLayout(self);
end;