summaryrefslogtreecommitdiff
path: root/nephilim/plugins/Systray.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim/plugins/Systray.py')
-rw-r--r--nephilim/plugins/Systray.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/nephilim/plugins/Systray.py b/nephilim/plugins/Systray.py
index ed819bc..0997f37 100644
--- a/nephilim/plugins/Systray.py
+++ b/nephilim/plugins/Systray.py
@@ -35,16 +35,12 @@ class Systray(Plugin):
, self.onSysTrayClick)
self.connect(self.mpclient(), QtCore.SIGNAL('song_changed'), self.update)
- self.connect(self.mpclient(), QtCore.SIGNAL('ready'), self.update)
- self.connect(self.mpclient(), QtCore.SIGNAL('connected'), self.update)
self.connect(self.mpclient(), QtCore.SIGNAL('disconnected'), self.update)
self.connect(self.mpclient(), QtCore.SIGNAL('time_changed'), self.update)
self.o.show()
def _unload(self):
self.disconnect(self.mpclient(), QtCore.SIGNAL('song_changed'), self.update)
- self.disconnect(self.mpclient(), QtCore.SIGNAL('ready'), self.update)
- self.disconnect(self.mpclient(), QtCore.SIGNAL('connected'), self.update)
self.disconnect(self.mpclient(), QtCore.SIGNAL('disconnected'), self.update)
self.disconnect(self.mpclient(), QtCore.SIGNAL('time_changed'), self.update)
self.o.hide()