From 434475119872e069fa24ce7b2bff34fbde4588a9 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Mon, 26 Jul 2010 21:14:11 +0100 Subject: [PATCH] self.screens.display, is always true, no matter which mode you use (single or dual screen) self.screens.current['primary'] is true, in single screen mode, or when the operator screen is also used as the main display! --- openlp/core/ui/maindisplay.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index f25a1d48c..a8156aeec 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -455,6 +455,8 @@ class MainDisplay(DisplayWidget): self.displayText.setPixmap(frame) else: self.displayText.setPixmap(QtGui.QPixmap.fromImage(frame)) + if not self.isVisible() and self.screens.current['primary']: # self.screens.display + self.setVisible(True) class VideoDisplay(Phonon.VideoWidget): """