diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 78a60c2a5..53d655214 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -175,8 +175,10 @@ class MainDisplay(Display): def setTransparency(self, enabled): if enabled: self.setAutoFillBackground(False) + self.setStyleSheet("QGraphicsView {background: transparent;}") else: self.setAttribute(QtCore.Qt.WA_NoSystemBackground, False) + self.setStyleSheet("QGraphicsView {background: white;}") self.setAttribute(QtCore.Qt.WA_TranslucentBackground, enabled) self.repaint()