From 7d677025b5e9f600fd7ff7763315af2bf4475b16 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Thu, 21 Jan 2016 22:18:56 +0100 Subject: [PATCH] Disable OpenGL on windows to make webkit player work. --- openlp/core/ui/maindisplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 9a5259a5d..dd9de07ca 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -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):