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-01-03 22:58:01 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-03 23:27:06 +0300
commiteaf559d52aa56faf4f1d76781ac4fc75ca31119e (patch)
tree8d09ee0b87be5882eca900c29fc7661527ac87d1 /release
parentd9b4d6ee5a4cb231070a0bcb5ac1e7b8c9c7f2f7 (diff)
Outliner/Collections: Add selected objects operator
This is part of T53495.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index 043ca19ba11..f948c1a3e6a 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -137,6 +137,8 @@ class OUTLINER_MT_edit_collections(Menu):
layout.operator("outliner.collection_nested_new", text="New Collection", icon='NEW')
layout.operator("outliner.collection_delete_selected", text="Delete Collections", icon='X')
+ layout.separator()
+ layout.operator("outliner.collection_objects_add", text="Add Selected", icon='ZOOMIN')
class OUTLINER_MT_edit_datablocks(Menu):