diff --git a/aqt/profiles.py b/aqt/profiles.py index 55e2bce38..69f4e7c29 100644 --- a/aqt/profiles.py +++ b/aqt/profiles.py @@ -425,7 +425,10 @@ please see: path = self._glPath() if not os.path.exists(path): - return "software" + if qtminor >= 12: + return "auto" + else: + return "software" mode = open(path, "r").read().strip()