Collection Manager: Fix QCD renumbering. Task: T69577

Fix error with renumber QCD slots adding a 21st slot.
This commit is contained in:
Ryan Inch 2021-05-10 00:27:58 -04:00
parent 37dd8b8eb0
commit 8ea89b89c7
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
"version": (2, 21, 1),
"version": (2, 21, 2),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel

View File

@ -255,7 +255,7 @@ class QCDSlots():
x += 1
if self.length() > 20:
if self.length() == 20:
break
else:
@ -279,7 +279,7 @@ class QCDSlots():
x += 1
if self.length() > 20:
if self.length() == 20:
break