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:
authorWilliam Reynish <billrey@me.com>2019-02-05 14:36:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-05 14:36:46 +0300
commit56f5fd84fc0c614b2c1e3e7f22b289504496426a (patch)
tree979e0f001a3c72c351f0efe053c5d94a3721cbbf /release
parent1b4230d4b585b8c441269ecccf9495f1e2d3821a (diff)
UI: Add collection move & link to menu
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 459836bf003..9f7a039c606 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2037,6 +2037,11 @@ class VIEW3D_MT_object_collection(Menu):
def draw(self, context):
layout = self.layout
+ layout.operator("object.move_to_collection")
+ layout.operator("object.link_to_collection")
+
+ layout.separator()
+
layout.operator("collection.create")
# layout.operator_menu_enum("collection.objects_remove", "collection") # BUGGY
layout.operator("collection.objects_remove")