mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 06:09:30 +02:00
designer: fix traversing component using arrow keys
git-svn-id: trunk@21752 -
This commit is contained in:
parent
ede3c52deb
commit
e19f46701f
@ -642,7 +642,9 @@ begin
|
||||
AComponent := TComponent(List[0])
|
||||
else
|
||||
AComponent := TComponent(List[List.Count - 1]);
|
||||
end;
|
||||
end
|
||||
else
|
||||
AComponent := nil;
|
||||
end
|
||||
else
|
||||
if DiffY <> 0 then
|
||||
@ -664,7 +666,9 @@ begin
|
||||
AComponent := TComponent(List[0])
|
||||
else
|
||||
AComponent := TComponent(List[List.Count - 1]);
|
||||
end;
|
||||
end
|
||||
else
|
||||
AComponent := nil;
|
||||
end;
|
||||
finally
|
||||
List.Free;
|
||||
|
Loading…
Reference in New Issue
Block a user