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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_outliner.py')
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index b0cdc101c6b..6682e792d6c 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -223,6 +223,16 @@ class OUTLINER_MT_context_object_delete(Menu):
layout.operator("outliner.object_operation", text="Delete Hierarchy").type='DELETE_HIERARCHY'
+class OUTLINER_MT_context_object_collection(Menu):
+ bl_label = "Object Operation Collection"
+
+ def draw(self, context):
+ layout = self.layout
+
+ layout.operator("outliner.object_add_to_new_collection", text="Add to New Collection", icon='ZOOMIN')
+ layout.operator("outliner.object_remove_from_collection", text="Remove from Collection", icon='ZOOMOUT')
+
+
class OUTLINER_MT_context_object(Menu):
bl_label = "Object"
@@ -231,11 +241,10 @@ class OUTLINER_MT_context_object(Menu):
layout.menu("OUTLINER_MT_context_object_select", text="Select")
layout.menu("OUTLINER_MT_context_object_delete", text="Delete")
+ layout.menu("OUTLINER_MT_context_object_collection", text="Collection")
layout.separator()
layout.operator("outliner.object_operation", text="Remap Users").type='REMAP'
layout.operator("outliner.object_operation", text="Rename").type='RENAME'
- layout.separator()
- layout.operator("outliner.object_remove_from_collection", text="Remove from Collection")
classes = (
@@ -249,6 +258,7 @@ classes = (
OUTLINER_MT_context_object,
OUTLINER_MT_context_object_delete,
OUTLINER_MT_context_object_select,
+ OUTLINER_MT_context_object_collection,
)
if __name__ == "__main__": # only for live edit.