Use a method call instead of a signal as the signal does other things as well

Fixes: https://launchpad.net/bugs/796324
This commit is contained in:
Tim Bentley 2011-06-13 08:29:58 +01:00
parent 628bdced52
commit eef44f0174
1 changed files with 1 additions and 1 deletions

View File

@ -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')