Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-05-31 13:20:14 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-05-31 15:52:05 +0300
commiteaad4caa569c979773141a15714264a46da73798 (patch)
tree562935a3d0728294afb1c748e1c0440b2fa1921c /source/blender/editors/object
parent54e92bbd29c048f09bd05f8fc22004f838ce3fdb (diff)
Link to Collection - Add shortcut (Shift + M)
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c
index 3d1a18e1fb1..11964708db6 100644
--- a/source/blender/editors/object/object_ops.c
+++ b/source/blender/editors/object/object_ops.c
@@ -415,6 +415,7 @@ void ED_keymap_object(wmKeyConfig *keyconf)
}
WM_keymap_add_item(keymap, "OBJECT_OT_move_to_collection", MKEY, KM_PRESS, 0, 0);
+ WM_keymap_add_item(keymap, "OBJECT_OT_link_to_collection", MKEY, KM_PRESS, KM_SHIFT, 0);
}
void ED_keymap_proportional_cycle(struct wmKeyConfig *UNUSED(keyconf), struct wmKeyMap *keymap)