From 4a2e6719eb5ca4a97e4165e9bcd95fb881f4c23c 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 52e6afc409bdb6a2c539bdcbf10007dae53608a8. 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()