mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
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:
parent
39cf5781b5
commit
c2428a4dd1
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user