mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 11:29:31 +02:00
designer: fix selection of non-visual components on the same level (bug #0015428)
git-svn-id: trunk@25791 -
This commit is contained in:
parent
81d8ef4da9
commit
0fd468ac81
@ -417,7 +417,7 @@ var
|
||||
OldRoot: TComponent;
|
||||
IsNonVisual: Boolean;
|
||||
begin
|
||||
if Assigned(Best) and BestIsNonVisual and (BestLevel <= Level) then exit;
|
||||
if Assigned(Best) and BestIsNonVisual and (BestLevel < Level) then exit;
|
||||
{$IFDEF VerboseDesignerSelect}
|
||||
DebugLn(['TComponentSearch.Gather ',DbgSName(Child),' ',dbgs(AtPos),' MinClass=',DbgSName(MinClass)]);
|
||||
{$ENDIF}
|
||||
|
Loading…
Reference in New Issue
Block a user