Skip to content

Commit

Permalink
Fix Cats failing to load on Blender 3.5+ (#585)
Browse files Browse the repository at this point in the history
The 'TESTING' category for addons is no longer present in non-alpha builds of Blender as of Blender 3.5.
  • Loading branch information
Mysteryem authored Mar 29, 2023
1 parent 2f82e19 commit 19e3087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def register():
else:
pass # From 2.83 on this is no longer needed
tools.common.get_user_preferences().filepaths.use_file_compression = True
bpy.context.window_manager.addon_support = {'OFFICIAL', 'COMMUNITY', 'TESTING'}
bpy.context.window_manager.addon_support = {'OFFICIAL', 'COMMUNITY'}

# Add shapekey button to shapekey menu
if hasattr(bpy.types, 'MESH_MT_shape_key_specials'): # pre 2.80
Expand Down

0 comments on commit 19e3087

Please sign in to comment.