diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index 4fe792bbd903497300ad4ee7b7814d6612ee6181..09cb1c2cae14b43a80add971f38df562c8b95f8e 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, 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 diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py index 08c902244300a315472148166c9c9dd335e8989f..46e83023388eb1fc026e00029800d45e2ce57613 100644 --- a/object_collection_manager/operators.py +++ b/object_collection_manager/operators.py @@ -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: diff --git a/object_collection_manager/qcd_operators.py b/object_collection_manager/qcd_operators.py index 56df15011dfdefdd69cda367c0af8fe244cdf995..4f5f555a6e452f0c84a38455c1440fb10cf2b9d6 100644 --- a/object_collection_manager/qcd_operators.py +++ b/object_collection_manager/qcd_operators.py @@ -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: