forked from openlp/openlp
Now including fix for bug:
https://bugs.launchpad.net/openlp/+bug/1531691
This commit is contained in:
parent
87b9ae3600
commit
43df6739b0
@ -789,10 +789,12 @@ class SlideController(DisplayController, RegistryProperties):
|
||||
def replace_service_manager_item(self, item):
|
||||
"""
|
||||
Replacement item following a remote edit
|
||||
|
||||
This action takes place when a song that is sent to live from Service Manager is edited.
|
||||
"not self.hide_mode()" prevents this from happening when display is blanked.
|
||||
If same song is currently in live, it updates the lyrics. If display i blanked, it won't update. (bug)
|
||||
:param item: The current service item
|
||||
"""
|
||||
if item == self.service_item:
|
||||
if item == self.service_item and not self.hide_mode():
|
||||
self._process_item(item, self.preview_widget.current_slide_number())
|
||||
|
||||
def add_service_manager_item(self, item, slide_no):
|
||||
|
Loading…
Reference in New Issue
Block a user