mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
LCL: In TDBGrid prevent "Grid index out of range" when dgRowSelect in options and tab or enter pressed. Issue #32468, patch from Michal Gawrycki.
git-svn-id: trunk@55931 -
This commit is contained in:
parent
24f4125a85
commit
51367feff0
@ -2396,7 +2396,7 @@ begin
|
||||
begin
|
||||
doOnKeyDown;
|
||||
if (Key<>0) and ValidDataset then begin
|
||||
if dgTabs in Options then begin
|
||||
if (dgTabs in Options) and not (dgRowSelect in Options) then begin
|
||||
|
||||
if ((ssShift in shift) and
|
||||
(Col<=GetFirstVisibleColumn) and (Row<=GetFirstVisibleRow)) then begin
|
||||
@ -2428,7 +2428,7 @@ begin
|
||||
key:=0;
|
||||
if (dgEditing in Options) and not EditorMode then
|
||||
EditorMode:=true
|
||||
else begin
|
||||
else if not (dgRowSelect in Options) then begin
|
||||
GetDeltaMoveNext(ssShift in Shift, DeltaCol, DeltaRow, AutoAdvance);
|
||||
MoveSel(True);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user