[Bf-extensions-cvs] [0ff5fc34] master: Collection Manager: Fix Regression. Task: T69577

Ryan Inch noreply at git.blender.org
Sun Apr 5 23:16:30 CEST 2020


Commit: 0ff5fc34e354cdd1a27828e3995e88ad86d072e2
Author: Ryan Inch
Date:   Sun Apr 5 17:11:34 2020 -0400
Branches: master
https://developer.blender.org/rBA0ff5fc34e354cdd1a27828e3995e88ad86d072e2

Collection Manager: Fix Regression. Task: T69577

Update function call in the Re-numerate QCD Slots operator
with it's new name.

===================================================================

M	object_collection_manager/__init__.py
M	object_collection_manager/qcd_operators.py

===================================================================

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()



More information about the Bf-extensions-cvs mailing list