mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Make Ctrl+A select all text in grid popup text editor. Fixes issue #1467.
This commit is contained in:
@ -194,6 +194,7 @@ begin
|
|||||||
VK_ESCAPE: btnCancelClick(Sender);
|
VK_ESCAPE: btnCancelClick(Sender);
|
||||||
// Apply changes and end editing by Ctrl + Enter
|
// Apply changes and end editing by Ctrl + Enter
|
||||||
VK_RETURN: if ssCtrl in Shift then btnApplyClick(Sender);
|
VK_RETURN: if ssCtrl in Shift then btnApplyClick(Sender);
|
||||||
|
Ord('a'), Ord('A'): if ssCtrl in Shift then Mainform.actSelectAllExecute(Sender);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user