From eef44f0174f2ddbe5feacf448dfe076dfcb5b324 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Mon, 13 Jun 2011 08:29:58 +0100 Subject: [PATCH] Use a method call instead of a signal as the signal does other things as well Fixes: https://launchpad.net/bugs/796324 --- openlp/core/ui/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index c572dde2f..a7eadc2b8 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -599,7 +599,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): log.info(u'Load Themes') self.themeManagerContents.loadThemes(True) # Hide/show the theme combobox on the service manager - Receiver.send_message(u'theme_update_global') + self.serviceManagerContents.themeChange() # Reset the cursor Receiver.send_message(u'cursor_normal')