Revert "default to GL mode auto on qt 5.12"

This reverts commit 52e6afc409.

unfortunately there still appear to be widespread issues on qt 5.12
This commit is contained in:
Damien Elmes 2019-01-06 09:59:25 +10:00
parent fc62dce419
commit 4a2e6719eb

View file

@ -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()