Fix error when removing preview collection
This commit is contained in:
+6
-1
@@ -50,7 +50,12 @@ def register():
|
||||
|
||||
def unregister():
|
||||
|
||||
bpy.utils.previews.remove(ASSET_PREVIEWS)
|
||||
try:
|
||||
bpy.utils.previews.remove(ASSET_PREVIEWS)
|
||||
except Exception as e:
|
||||
pass
|
||||
# print(f"!-- {e} --!")
|
||||
# print(f"No preview collection found. {ASSET_PREVIEWS} can't be remove.")
|
||||
|
||||
if bpy.app.background:
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user