mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-17 10:19:17 +02:00
Merged revision(s) 44056 #05e6ad8dab from trunk:
Grids: correct shorctut keys for Copy/Paste/Cut. Resolves issue #0025708. ........ git-svn-id: branches/fixes_1_2@44184 -
This commit is contained in:
parent
21a852bd35
commit
c91e94a176
@ -6746,13 +6746,13 @@ begin
|
||||
key:=0;
|
||||
end;
|
||||
VK_C:
|
||||
if not FEditorKey and (ssCtrl in Shift) then
|
||||
if not FEditorKey and (Shift = [ssModifier]) then
|
||||
doCopyToClipboard;
|
||||
VK_V:
|
||||
if not FEditorKey and (ssCtrl in Shift) then
|
||||
if not FEditorKey and (Shift = [ssModifier]) then
|
||||
doPasteFromClipboard;
|
||||
VK_X:
|
||||
if not FEditorKey and (ssCtrl in Shift) then
|
||||
if not FEditorKey and (Shift = [ssShift]) then
|
||||
doCutToClipboard;
|
||||
VK_DELETE:
|
||||
if not FEditorKey and EditingAllowed(FCol)
|
||||
|
Loading…
Reference in New Issue
Block a user