mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 13:18:16 +02:00
Grids: correct shorctut keys for Copy/Paste/Cut.
Resolves issue #0025708. git-svn-id: trunk@44056 -
This commit is contained in:
parent
4a2a123175
commit
05e6ad8dab
@ -6756,13 +6756,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