From e41c399954ff01afa7d5b3b23823b37c1eec55c5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 6 Jan 2019 09:59:25 +1000 Subject: [PATCH] Revert "default to GL mode auto on qt 5.12" This reverts commit d7760d983159362894ccf3156245327f0baab182. unfortunately there still appear to be widespread issues on qt 5.12 --- aqt/profiles.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/aqt/profiles.py b/aqt/profiles.py index 69f4e7c29..55e2bce38 100644 --- a/aqt/profiles.py +++ b/aqt/profiles.py @@ -425,10 +425,7 @@ please see: path = self._glPath() if not os.path.exists(path): - if qtminor >= 12: - return "auto" - else: - return "software" + return "software" mode = open(path, "r").read().strip()