mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-06 13:45:56 +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;
|
end;
|
||||||
LAnchorControl.Validate;
|
LAnchorControl.Validate;
|
||||||
LAnchorControl.Visible := True;
|
LAnchorControl.Visible := True;
|
||||||
if AControl is TWinControl then
|
if (AControl is TWinControl)
|
||||||
|
and not (csOwnedChildrenNotSelectable in AControl.ControlStyle) then
|
||||||
begin
|
begin
|
||||||
LWinControl := TWinControl(AControl);
|
LWinControl := TWinControl(AControl);
|
||||||
for i := 0 to LWinControl.ControlCount - 1 do
|
for i := 0 to LWinControl.ControlCount - 1 do
|
||||||
|
Loading…
Reference in New Issue
Block a user