fix minimized widget were not shown anymore on next cession

This commit is contained in:
Basile Burg 2014-08-10 06:10:09 +02:00
parent e7328535b6
commit 4c645c6ccb
1 changed files with 9 additions and 1 deletions

View File

@ -512,8 +512,16 @@ end;
procedure TCEMainForm.SaveDocking;
var
xcfg: TXMLConfigStorage;
i: NativeInt;
begin
WindowState := wsNormal;
if WindowState = wsMinimized then
WindowState := wsNormal;
for i:= 0 to fWidgList.Count-1 do
begin
if DockMaster.GetAnchorSite(fWidgList.widget[i]).WindowState = wsMinimized then
DockMaster.GetAnchorSite(fWidgList.widget[i]).WindowState := wsNormal;
DockMaster.GetAnchorSite(fWidgList.widget[i]).Show;
end;
if not Visible then exit;
//
xcfg := TXMLConfigStorage.Create(getDocPath + 'docking.xml',false);