fix #309 - Coedit hangs when window is maximized and then dragged

This commit is contained in:
Basile Burg 2018-04-26 14:26:03 +02:00
parent 4a24efc0bb
commit d9dd7ad6fa
2 changed files with 6 additions and 0 deletions

View File

@ -1472,6 +1472,7 @@ object CEMainForm: TCEMainForm
OnResize = FormResize
OnWindowStateChange = FormWindowStateChange
ShowHint = True
LCLVersion = '1.8.2.0'
Visible = False
object mainMenu: TMainMenu
top = 1

View File

@ -1195,6 +1195,11 @@ end;
constructor TCEMainForm.create(aOwner: TComponent);
begin
inherited create(aOwner);
// provide defaults, necessary because not handled by docking.xml
width := (Screen.Width div 3) * 2;
height := (Screen.Height div 3) * 2;
fOptionCategories := TCEEditableOptionsSubject.create;
EntitiesConnector.addObserver(self);