Skip to content
Snippets Groups Projects
Commit 7084d19e authored by Ryan Inch's avatar Ryan Inch
Browse files

Collection Manager: Fix regression. Task: T69577

Fix error when adding/removing objects caused by a regression from
rBAadac42a46334 (improve performance for large numbers of selected
objects)
parent 663c7eb7
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ bl_info = {
"name": "Collection Manager",
"description": "Manage collections and their objects",
"author": "Ryan Inch",
"version": (2, 12, 4),
"version": (2, 12, 5),
"blender": (2, 80, 0),
"location": "View3D - Object Mode (Shortcut - M)",
"warning": '', # used for warning icon and text in addons panel
......
......@@ -248,7 +248,7 @@ class CMSetCollectionOperator(Operator):
# make sure there is an active object
if not active_object:
active_object = selected_objects[0]
active_object = tuple(selected_objects)[0]
# check if in collection
if not active_object.name in target_collection.objects:
......
......@@ -81,7 +81,7 @@ class MoveToQCDSlot(Operator):
# adds object to slot
if self.toggle:
if not active_object:
active_object = selected_objects[0]
active_object = tuple(selected_objects)[0]
if not active_object.name in qcd_laycol.collection.objects:
for obj in selected_objects:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment