designer: fix traversing component using arrow keys

git-svn-id: trunk@21752 -
This commit is contained in:
paul 2009-09-18 00:32:19 +00:00
parent ede3c52deb
commit e19f46701f

View File

@ -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;