Anchor Editor: Don't add (sub)controls with csNoDesignSelectable in ControlStyle. Issue #41314.

This commit is contained in:
Juha 2025-01-07 18:18:04 +02:00
parent ee8e7c13c8
commit f0a9cde060

View File

@ -962,8 +962,7 @@ var
if AControl.Name='' then exit;
// Skip selected siblings and return True.
if SelectedControls.IndexOf(AControl)>=0 then exit(true);
// This can happen with combined controls like TLabeledEdit.
if Assigned(AControl.Owner) and (AControl.Owner<>AControl.Parent) then exit;
if csNoDesignSelectable in AControl.ControlStyle then exit;
sl.Add(ControlToStr(AControl));
end;