openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #05854
[Merge] lp:~trb143/openlp/bugs into lp:openlp
Tim Bentley has proposed merging lp:~trb143/openlp/bugs into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Related bugs:
#693150 Custom Slide Display footer option
https://bugs.launchpad.net/bugs/693150
#693202 delete theme
https://bugs.launchpad.net/bugs/693202
For more details, see:
https://code.launchpad.net/~trb143/openlp/bugs/+merge/47278
Missed reseting the dictionary when the plugin disables the request!
--
https://code.launchpad.net/~trb143/openlp/bugs/+merge/47278
Your team OpenLP Core is requested to review the proposed merge of lp:~trb143/openlp/bugs into lp:openlp.
=== modified file 'openlp/core/ui/maindisplay.py'
--- openlp/core/ui/maindisplay.py 2011-01-23 15:36:15 +0000
+++ openlp/core/ui/maindisplay.py 2011-01-24 17:33:53 +0000
@@ -248,6 +248,7 @@
self.displayImage(self.serviceItem.bg_image_bytes)
else:
self.displayImage(None)
+ self.override = {}
# Update the preview frame.
Receiver.send_message(u'maindisplay_active')
@@ -264,6 +265,7 @@
self.phononActive = False
else:
self.frame.evaluateJavaScript(u'show_video("close");')
+ self.override = {}
# Update the preview frame.
Receiver.send_message(u'maindisplay_active')
Follow ups