diff --git a/qt/aqt/addons.py b/qt/aqt/addons.py index 270f878fd..fff8a4eb8 100644 --- a/qt/aqt/addons.py +++ b/qt/aqt/addons.py @@ -116,7 +116,7 @@ class AddonMeta: if min is not None and current_point_version < min: return False max = self.max_point_version - if max is not None and current_point_version > max: + if max is not None and max < 0 and current_point_version > abs(max): return False return True