← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~phill-ridout/openlp/fixes into lp:openlp

 

phill has proposed merging lp:~phill-ridout/openlp/fixes into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)
  Tim Bentley (trb143)


Trb143 I think this is acceptable under your recent email to the dev list.
-- 
https://code.launchpad.net/~phill-ridout/openlp/fixes/+merge/30726
Your team OpenLP Core is requested to review the proposed merge of lp:~phill-ridout/openlp/fixes into lp:openlp.
=== modified file 'openlp/core/ui/slidecontroller.py'
--- openlp/core/ui/slidecontroller.py	2010-07-22 07:32:55 +0000
+++ openlp/core/ui/slidecontroller.py	2010-07-22 22:35:56 +0000
@@ -390,6 +390,8 @@
             QtCore.SIGNAL(u'config_updated'), self.refreshServiceItem)
         QtCore.QObject.connect(Receiver.get_receiver(),
             QtCore.SIGNAL(u'%s_slide_cache' % self.typePrefix), self.slideCache)
+        QtCore.QObject.connect(Receiver.get_receiver(),
+            QtCore.SIGNAL(u'maindisplay_hide'), self.onStopLoop)
 
     def widthChanged(self):
         """
@@ -899,6 +901,7 @@
                 int(self.DelaySpinBox.value()) * 1000)
             self.Toolbar.actions[u'Stop Loop'].setVisible(True)
             self.Toolbar.actions[u'Start Loop'].setVisible(False)
+        Receiver.send_message(u'maindisplay_show')
 
     def onStopLoop(self):
         """


Follow ups