← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~raoul-snyman/openlp/single-display into lp:openlp

 

Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/single-display into lp:openlp.

Requested reviews:
  Tim Bentley (trb143)


Only show the display screen on startup if it is not on the primary screen.
-- 
https://code.launchpad.net/~raoul-snyman/openlp/single-display/+merge/34031
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/core/ui/maindisplay.py'
--- openlp/core/ui/maindisplay.py	2010-08-29 14:44:14 +0000
+++ openlp/core/ui/maindisplay.py	2010-08-29 19:20:55 +0000
@@ -155,9 +155,9 @@
             self.webView.setHtml(build_html(serviceItem, self.screen,
                 self.parent.alertTab, self.isLive))
             self.initialFrame = True
-            self.show()
             # To display or not to display?
             if not self.screen[u'primary']:
+                self.show()
                 self.primary = False
             else:
                 self.primary = True


Follow ups