mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 15:37:50 +02:00
Anchor Editor: Don't add (sub)controls with csNoDesignSelectable in ControlStyle. Issue #41314.
This commit is contained in:
parent
ee8e7c13c8
commit
f0a9cde060
@ -962,8 +962,7 @@ var
|
|||||||
if AControl.Name='' then exit;
|
if AControl.Name='' then exit;
|
||||||
// Skip selected siblings and return True.
|
// Skip selected siblings and return True.
|
||||||
if SelectedControls.IndexOf(AControl)>=0 then exit(true);
|
if SelectedControls.IndexOf(AControl)>=0 then exit(true);
|
||||||
// This can happen with combined controls like TLabeledEdit.
|
if csNoDesignSelectable in AControl.ControlStyle then exit;
|
||||||
if Assigned(AControl.Owner) and (AControl.Owner<>AControl.Parent) then exit;
|
|
||||||
sl.Add(ControlToStr(AControl));
|
sl.Add(ControlToStr(AControl));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user