Keymap: Add support for the Cmd key on macOS for copy/paste in the Outliner.

Consistent with other areas.
This commit is contained in:
2019-03-25 13:30:21 +01:00
parent a74b571dde
commit c97e291580

View File

@@ -726,6 +726,12 @@ def km_outliner(params):
("outliner.id_paste", {"type": 'V', "value": 'PRESS', "ctrl": True}, None), ("outliner.id_paste", {"type": 'V', "value": 'PRESS', "ctrl": True}, None),
]) ])
if params.apple:
items.extend([
("outliner.id_copy", {"type": 'C', "value": 'PRESS', "oskey": True}, None),
("outliner.id_paste", {"type": 'V', "value": 'PRESS', "oskey": True}, None),
])
return keymap return keymap