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:
maxim 2014-02-20 19:52:29 +00:00
parent 21a852bd35
commit c91e94a176

View File

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