Skip to content
Snippets Groups Projects
Commit 8d8b92c3 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

missing func called by emit() func. Fixes #564

parent 4e1d7a21
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,10 @@ class MusicTrackListener(gobject.GObject):
bus.add_signal_receiver(self._player_playing_changed_cb,
'playingChanged', 'org.gnome.Rhythmbox.Player')
def do_music_track_changed(self, info):
if info is not None:
self._last_playing_music = info
def _player_name_owner_changed(self, name, old, new):
if not new:
self.emit('music-track-changed', None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment