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:
authorRyan Inch <mythologylover75@gmail.com>2020-04-06 00:11:34 +0300
committerRyan Inch <mythologylover75@gmail.com>2020-04-06 00:11:34 +0300
commit0ff5fc34e354cdd1a27828e3995e88ad86d072e2 (patch)
tree5d3c61693fee955eed168b1f5f2c5c4cf56ad040
parent5c9aaca64d7c54aaa09684d64542c59b896c5f11 (diff)
Collection Manager: Fix Regression. Task: T69577
Update function call in the Re-numerate QCD Slots operator with it's new name.
-rw-r--r--object_collection_manager/__init__.py2
-rw-r--r--object_collection_manager/qcd_operators.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index 1f3fdef1..c968cb79 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
- "version": (2,5,0),
+ "version": (2,5,1),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel
diff --git a/object_collection_manager/qcd_operators.py b/object_collection_manager/qcd_operators.py
index a7a6079e..679d35be 100644
--- a/object_collection_manager/qcd_operators.py
+++ b/object_collection_manager/qcd_operators.py
@@ -263,7 +263,7 @@ class RenumerateQCDSlots(Operator):
def invoke(self, context, event):
global qcd_slots
- qcd_slots.clear()
+ qcd_slots.clear_slots()
if event.ctrl:
qcd_slots.overrides.clear()