AnchorDocking: Fix save-restore of MainForm.WindowState with TAnchorDockPanel. Issue #32302, patch from Andrey Zubarev.

git-svn-id: trunk@55712 -
This commit is contained in:
juha 2017-08-20 09:02:32 +00:00
parent 39cf5781b5
commit c2428a4dd1
2 changed files with 5 additions and 2 deletions

View File

@ -1835,11 +1835,14 @@ begin
if (ANode.NodeType<>adltnPages) and (aHostSite.Pages<>nil) then
aHostSite.FreePages;
end;
if Site is TCustomForm then
if Site is TCustomForm then begin
if AParent=nil then
TCustomForm(Site).WindowState:=ANode.WindowState
else
TCustomForm(Site).WindowState:=wsNormal;
end else
GetParentForm(Site).WindowState:=ANode.WindowState;
end;
function TAnchorDockMaster.GetNodeSite(Node: TAnchorDockLayoutTreeNode): TAnchorDockHostSite;

View File

@ -1129,7 +1129,7 @@ begin
Monitor:=TCustomForm(AControl).Monitor.MonitorNum;
WorkAreaRect:=TCustomForm(AControl).Monitor.WorkareaRect;
end else
WindowState:=wsNormal;
WindowState:=GetParentForm(AControl).WindowState;
if AControl is TCustomTabControl then
TabPosition:=TCustomTabControl(AControl).TabPosition
else