Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2021-07-06 18:26:06 +0300
committerBastien Montagne <bastien@blender.org>2021-07-06 18:26:06 +0300
commit735cdeec78f654e20e63841c25e077c931242cc1 (patch)
tree288fd6ae39695cb2dd956924729ce58b13dbd9db /object_collection_manager
parent6a2c44135019377ae124a0b358c8539f64057c11 (diff)
Update add-ons after renaming master collection IDs to 'Scene Collection'.
This mostly affects default names in object collection manager add-on.
Diffstat (limited to 'object_collection_manager')
-rw-r--r--object_collection_manager/ui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/object_collection_manager/ui.py b/object_collection_manager/ui.py
index 601b587a..82f5f6e2 100644
--- a/object_collection_manager/ui.py
+++ b/object_collection_manager/ui.py
@@ -165,7 +165,7 @@ class CollectionManager(Operator):
prop = c_icon.operator("view3d.set_active_collection",
text='', icon='GROUP', depress=highlight)
prop.is_master_collection = True
- prop.collection_name = 'Master Collection'
+ prop.collection_name = 'Scene Collection'
master_collection_row.separator()
@@ -226,7 +226,7 @@ class CollectionManager(Operator):
depress=some_selected,
)
prop.is_master_collection = True
- prop.collection_name = 'Master Collection'
+ prop.collection_name = 'Scene Collection'
# global rtos
@@ -278,7 +278,7 @@ class CollectionManager(Operator):
prop = row_setcol.operator("view3d.set_collection", text="",
icon=icon, emboss=False)
prop.is_master_collection = True
- prop.collection_name = 'Master Collection'
+ prop.collection_name = 'Scene Collection'
# add vertical separator line
separator = row_setcol.row()