diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py index 4a6ea451e5cff2307d3489f7bf616321a5269ea6..5f41598a821b32d45b7f4fb54cce445fb4a8e73a 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": (1,8,0), + "version": (1,8,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/operators.py b/object_collection_manager/operators.py index e5d08f98392c6b3152c0efcb9ee354b276e62592..0561462577b10e190c9a9151cad8382d81fc80bc 100644 --- a/object_collection_manager/operators.py +++ b/object_collection_manager/operators.py @@ -1195,7 +1195,7 @@ class CMPhantomModeOperator(Operator): # save current rto history for rto, history, in rto_history.items(): - phantom_history[rto+"_history"] = history.get(view_layer, {}).copy() + phantom_history[rto+"_history"] = history.get(view_layer, [] if rto[-3:] == "all" else {}).copy() # return to normal mode