diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index ef21ffde4..2d4134ee3 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -219,8 +219,7 @@ class EventReceiver(QtCore.QObject): ``cursor_normal`` Resets the cursor to default - - ``maindisplay_css_updated`` + ``update_display_css`` CSS has been updated which needs to be changed on the main display. diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 01b616d9d..dafda8ccf 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -82,7 +82,7 @@ class MainDisplay(QtGui.QGraphicsView): QtCore.SIGNAL(u'openlp_phonon_creation'), self.createMediaObject) QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_css_updated'), self.cssChanged) + QtCore.SIGNAL(u'update_display_css'), self.cssChanged) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'config_updated'), self.configChanged) diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 3cf3c0ab3..8720c5111 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -191,7 +191,7 @@ class AlertsTab(SettingsTab): settings.setValue(u'location', QtCore.QVariant(self.location)) settings.endGroup() if self.changed: - Receiver.send_message(u'maindisplay_css_updated') + Receiver.send_message(u'update_display_css') self.changed = False def updateDisplay(self):