From dc1479e830fbd095a3ddf5389be8c94cbc69cfdc Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 22 Jun 2010 18:12:47 +0100 Subject: [PATCH] Stop screen blanking on 1 display as startup --- openlp/core/ui/slidecontroller.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index e289e430d..87f6f20fe 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -655,7 +655,8 @@ class SlideController(QtGui.QWidget): """ Allow the main display to blank the main display at startup time """ - self.blankButton.setChecked(True) + if not self.mainDisplay.primary: + self.blankButton.setChecked(True) def onSlideBlank(self): """