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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-03-06 17:09:16 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-06 17:19:29 +0300
commita77feabb51470b9cfb71be7f0ea7e774d6591799 (patch)
treed48b45fa9be178a6f3655a37dbe5148747d5fd53 /release/scripts
parent8462f0e85ef4752c09b2019b1e736e34e6dc8161 (diff)
Collection duplication from Outliner: add a 'duplicate hierarchy' operation.
Point is, you may want to duplicate your set of collections, but not duplicate all their objects. Some notes: * Am rather skeptical about the practice of using operator name to define behavior of some common exec code. Imho, that should be a single operator with an enum to refine its behavior (@cambpellbarton may also have an opinion here?). Left it as-is for now, because this seems to be used by other operators too in that code. :/ * @dfelinto, @pablovazquez, @billreynish am not so happy with current names, but cannot find really good short ones either... Also, shouldn't we move those into a dedicated `Duplicate` sub-menu?
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index 6d90c24ff99..59b6757c308 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -192,8 +192,9 @@ class OUTLINER_MT_collection(Menu):
space = context.space_data
layout.operator("outliner.collection_new", text="New").nested = True
- layout.operator("outliner.collection_duplicate", text="Duplicate Collection")
+ layout.operator("outliner.collection_duplicate_hierarchy", text="Duplicate Hierarchy")
layout.operator("outliner.collection_duplicate_linked", text="Duplicate Linked")
+ layout.operator("outliner.collection_duplicate", text="Duplicate Full")
layout.separator()