Disable OpenGL on windows to make webkit player work.

This commit is contained in:
Tomas Groth 2016-01-21 22:18:56 +01:00
parent 85c329fb26
commit 7d677025b5
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class Display(QtWidgets.QGraphicsView):
# OpenGL. Only white blank screen is shown on the 2nd monitor all the
# time. We need to investigate more how to use OpenGL properly on Mac OS
# X.
if not is_macosx():
if not is_macosx() and not is_win():
self.setViewport(QtOpenGL.QGLWidget())
def setup(self):