mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-21 23:19:29 +02:00
AnchorDocking: Fixed load layout for visible=false forms minimize button not show. Issue #34347. Patch from Andrey Zubarev
git-svn-id: trunk@60099 -
This commit is contained in:
parent
9730cd7027
commit
4bb6efce90
@ -898,7 +898,8 @@ function DockedControlIsVisible(Control: TControl): boolean;
|
||||
begin
|
||||
while Control<>nil do begin
|
||||
if (not Control.IsControlVisible)
|
||||
and (not (Control is TAnchorDockPage)) then
|
||||
and (not (Control is TAnchorDockPage))
|
||||
and (Control.parent<>nil) then
|
||||
exit(false);
|
||||
Control:=Control.Parent;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user