summaryrefslogtreecommitdiff
path: root/nephilim/nephilim_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/nephilim_app.py')
-rw-r--r--nephilim/nephilim_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nephilim/nephilim_app.py b/nephilim/nephilim_app.py
index b3f00be..2c4f421 100644
--- a/nephilim/nephilim_app.py
+++ b/nephilim/nephilim_app.py
@@ -53,11 +53,11 @@ class NephilimApp(QtGui.QApplication):
self.settings = QtCore.QSettings()
#init main window
- self.main_win = winMain()
+ self.main_win = winMain(self.mpclient)
#init plugins
show_settings = False # are there new plugins?
- self.plugins = plugins.Plugins(self.main_win, self.mpclient)
+ self.plugins = plugins.Plugins(self.main_win, self.mpclient)
for plugin in self.plugins.plugins():
if self.settings.value(plugin.name + '/load') == None:
show_settings = True