From 9e440cb0589c604761eb8994bc39607fcace869c Mon Sep 17 00:00:00 2001 From: juha Date: Wed, 20 Jul 2016 18:52:54 +0000 Subject: [PATCH] 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 - --- ide/procedurelist.pas | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ide/procedurelist.pas b/ide/procedurelist.pas index e968468143..2400452520 100644 --- a/ide/procedurelist.pas +++ b/ide/procedurelist.pas @@ -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;