← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~trb143/openlp/working into lp:openlp

 

Tim Bentley has proposed merging lp:~trb143/openlp/working into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)


Fix bug #596997
-- 
https://code.launchpad.net/~trb143/openlp/working/+merge/28218
Your team OpenLP Core is requested to review the proposed merge of lp:~trb143/openlp/working into lp:openlp.
=== modified file 'openlp/core/ui/slidecontroller.py'
--- openlp/core/ui/slidecontroller.py	2010-06-20 11:09:15 +0000
+++ openlp/core/ui/slidecontroller.py	2010-06-22 17:20:44 +0000
@@ -655,7 +655,8 @@
         """
         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):
         """


Follow ups