mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 07:59:44 +02:00
merge r51088 #c93f1b0a8b: lcl: grids: don't apply editor value if ESC is pressed.
git-svn-id: branches/fixes_1_6@51091 -
This commit is contained in:
parent
387f3f55df
commit
27cafa3cab
@ -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