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-18 18:54:01 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-18 18:56:55 +0300
commit33ddd926b769fca68bc485312ca9def847847b87 (patch)
tree795e3d90f02f85f644dbc272f136bde18fb58317
parent51bcf7bd5f3f21e0ff38b04965cc8413c339b3cf (diff)
Outliner: View Layer: add option to add a new collection to the current view layer
This operator not only links a collection, but it creates a new one and then it links it. Although the preferrable method for users to handle their collections is when viewing the "Collections", let's explore this workflow for now. Suggested by Pablo Vazquez, thank you.
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index f231ab7d43c..1236885f96e 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -118,6 +118,7 @@ class OUTLINER_MT_edit_active_view_layer(Menu):
layout = self.layout
layout.operator("outliner.collection_link", icon='LINKED')
+ layout.operator("outliner.collection_new", icon='NEW')
class OUTLINER_MT_edit_datablocks(Menu):