ignore requested graphics driver on Qt6 for now

This commit is contained in:
Damien Elmes 2021-10-29 19:34:05 +10:00
parent a3c7628931
commit 0facadcf91

View file

@ -405,6 +405,10 @@ def setupGL(pm: aqt.profiles.ProfileManager) -> None:
qInstallMessageHandler(msgHandler)
# ignore set graphics driver on Qt6 for now
if qtmajor > 5:
return
if driver == VideoDriver.OpenGL:
pass
else: