mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 09:19:32 +02:00
LCL, grids: fix AutoAdvance=aaNone, issue #28752
git-svn-id: trunk@49897 -
This commit is contained in:
parent
1ab7a995da
commit
6e2cd84dcf
@ -8429,8 +8429,11 @@ begin
|
||||
|
||||
result := False;
|
||||
|
||||
if AAutoAdvance=aaNone then
|
||||
if AAutoAdvance=aaNone then begin
|
||||
ACol := 0;
|
||||
ARow := 0;
|
||||
exit; // quick case, no auto movement allowed
|
||||
end;
|
||||
|
||||
if [goRowSelect,goRelaxedRowSelect]*Options=[goRowSelect] then begin
|
||||
if Inverse then
|
||||
|
Loading…
Reference in New Issue
Block a user