mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 08:32:47 +02:00
DockedFormEditor: Only designer selectable controls can be used in AnchorDesigner
git-svn-id: trunk@64852 -
This commit is contained in:
parent
60fe218c22
commit
d6d91c0ccb
@ -407,7 +407,8 @@ begin
|
||||
end;
|
||||
LAnchorControl.Validate;
|
||||
LAnchorControl.Visible := True;
|
||||
if AControl is TWinControl then
|
||||
if (AControl is TWinControl)
|
||||
and not (csOwnedChildrenNotSelectable in AControl.ControlStyle) then
|
||||
begin
|
||||
LWinControl := TWinControl(AControl);
|
||||
for i := 0 to LWinControl.ControlCount - 1 do
|
||||
|
Loading…
Reference in New Issue
Block a user