From 0ff5fc34e354cdd1a27828e3995e88ad86d072e2 Mon Sep 17 00:00:00 2001 From: Ryan Inch <mythologylover75@gmail.com> Date: Sun, 5 Apr 2020 17:11:34 -0400 Subject: [PATCH] Collection Manager: Fix Regression. Task: T69577 Update function call in the Re-numerate QCD Slots operator with it's new name. --- object_collection_manager/__init__.py | 2 +- object_collection_manager/qcd_operators.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index 1f3fdef14..c968cb795 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 a7a6079e3..679d35be2 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() -- GitLab