mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 01:39:31 +02:00
lcl: grids: don't apply editor value if ESC is pressed. Issue #29261, patch by abonic1
git-svn-id: trunk@51088 -
This commit is contained in:
parent
181b205220
commit
c93f1b0a8b
@ -9613,7 +9613,10 @@ begin
|
||||
VK_END, VK_HOME:
|
||||
;
|
||||
VK_ESCAPE:
|
||||
FGrid.EditorHide;
|
||||
begin
|
||||
doGridKeyDown;
|
||||
FGrid.EditorHide;
|
||||
end;
|
||||
else
|
||||
doEditorKeyDown;
|
||||
end;
|
||||
@ -12233,7 +12236,10 @@ begin
|
||||
VK_END, VK_HOME:
|
||||
;
|
||||
VK_ESCAPE:
|
||||
FGrid.EditorHide;
|
||||
begin
|
||||
doGridKeyDown;
|
||||
FGrid.EditorHide;
|
||||
end;
|
||||
else
|
||||
doEditorKeyDown;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user