From 25e5ec245c17c95480acbc231600d581a53702c0 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 31 May 2018 14:34:16 +0200 Subject: Support Move / Link to collection in the outliner as well --- source/blender/editors/space_outliner/outliner_ops.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/editors/space_outliner/outliner_ops.c') diff --git a/source/blender/editors/space_outliner/outliner_ops.c b/source/blender/editors/space_outliner/outliner_ops.c index 9c1b9bf2630..a5a7067cd8e 100644 --- a/source/blender/editors/space_outliner/outliner_ops.c +++ b/source/blender/editors/space_outliner/outliner_ops.c @@ -557,6 +557,9 @@ void outliner_keymap(wmKeyConfig *keyconf) WM_keymap_verify_item(keymap, "OUTLINER_OT_collection_new", CKEY, KM_PRESS, 0, 0); WM_keymap_verify_item(keymap, "OUTLINER_OT_collection_delete", XKEY, KM_PRESS, 0, 0); + WM_keymap_verify_item(keymap, "OBJECT_OT_move_to_collection", MKEY, KM_PRESS, 0, 0); + WM_keymap_verify_item(keymap, "OBJECT_OT_link_to_collection", MKEY, KM_PRESS, KM_SHIFT, 0); + outliner_item_drag_drop_modal_keymap(keyconf); } -- cgit v1.2.3