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>2017-02-16 12:54:09 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-02-16 16:39:56 +0300
commit011c8c730fb3efc9e00855911d4df5deb3f0c0f5 (patch)
tree580e3617113cc99e8741af341c5755b72c2f8e81 /release
parent3d63b9a88f969f2766cb37c8d3c937e1054a8154 (diff)
Outliner collection operators, all but collection link
Note: It may be missing a notifier to prevent Outliner from crashing when deleting collections.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_outliner.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index db91c382efb..56b6ea46229 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -63,11 +63,11 @@ class OUTLINER_HT_header(Header):
elif space.display_mode == 'COLLECTIONS':
row = layout.row(align=True)
- row.operator("outliner.collections_new", text="", icon='NEW')
- row.operator("outliner.collections_override_new", text="", icon='LINK_AREA')
- row.operator("outliner.collections_link", text="", icon='LINKED')
- row.operator("outliner.collections_unlink", text="", icon='UNLINKED')
- row.operator("outliner.collections_delete", text="", icon='X')
+ row.operator("outliner.collection_new", text="", icon='NEW')
+ row.operator("outliner.collection_override_new", text="", icon='LINK_AREA')
+ row.operator("outliner.collection_link", text="", icon='LINKED')
+ row.operator("outliner.collection_unlink", text="", icon='UNLINKED')
+ row.operator("outliner.collection_delete", text="", icon='X')
class OUTLINER_MT_editor_menus(Menu):