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:
juha 2017-09-26 16:48:05 +00:00
parent 24f4125a85
commit 51367feff0

View File

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