File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10921,9 +10921,9 @@ procedure TMainForm.AnyGridKeyDown(Sender: TObject; var Key: Word; Shift: TShift
1092110921 Key := 0;
1092210922 end;
1092310923 end;
10924- VK_RETURN: if Assigned(g.FocusedNode) then g.EditNode(g.FocusedNode, g.FocusedColumn);
10925- VK_DOWN: if g.FocusedNode = g.GetLast then actDataInsertExecute(actDataInsert);
10926- VK_NEXT: if (g = DataGrid) and (g.FocusedNode = g.GetLast) then actDataShowNext.Execute;
10924+ VK_RETURN: if Assigned(g.FocusedNode) and (Shift=[]) then g.EditNode(g.FocusedNode, g.FocusedColumn);
10925+ VK_DOWN: if ( g.FocusedNode = g.GetLast) and (Shift=[]) then actDataInsertExecute(actDataInsert);
10926+ VK_NEXT: if (g = DataGrid) and (g.FocusedNode = g.GetLast) and (Shift=[]) then actDataShowNext.Execute;
1092710927 end;
1092810928end;
1092910929
You can’t perform that action at this time.
0 commit comments