Revert "default to GL mode auto on qt 5.12"

This reverts commit d7760d9831.

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 2a539cda1b
commit e41c399954

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