Grids: correct shorctut keys for Copy/Paste/Cut.

Resolves issue #0025708.

git-svn-id: trunk@44056 -
This commit is contained in:
bart 2014-02-13 18:15:26 +00:00
parent 4a2a123175
commit 05e6ad8dab

View File

@ -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)