← 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:
  OpenLP Core (openlp-core)


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/34030
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/single-display into 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:03:41 +0000
@@ -155,9 +155,10 @@
             self.webView.setHtml(build_html(serviceItem, self.screen,
                 self.parent.alertTab, self.isLive))
             self.initialFrame = True
-            self.show()
+            #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