diff --git a/leenkx/blender/lnx/utils.py b/leenkx/blender/lnx/utils.py index 4730cfd..8ac35d2 100644 --- a/leenkx/blender/lnx/utils.py +++ b/leenkx/blender/lnx/utils.py @@ -828,8 +828,8 @@ def check_blender_version(op: bpy.types.Operator): """Check whether the Blender version is supported by Leenkx, if not, report in UI. """ - if bpy.app.version[0] != 4 or bpy.app.version[1] != 2: - op.report({'INFO'}, 'INFO: For Leenkx to work correctly, use a Blender LTS version such as 4.2 | 3.6 | 3.3') + if bpy.app.version[:2] not in [(4, 4), (4, 2), (3, 6), (3, 3)]: + op.report({'INFO'}, 'INFO: For Leenkx to work correctly, use a Blender LTS version') def check_saved(self):