Fix play/pause button in Rhythmbox 3.3

Esse commit está contido em:
Clement Lefebvre
2016-11-25 10:00:32 +00:00
commit e32913ed1f
+5 -1
Ver Arquivo
@@ -183,7 +183,11 @@ class TrayIcon(GObject.Object, Peas.Activatable):
"""
Starts playing
"""
self.player.playpause() # does nothing argument
try:
self.player.playpause() # does nothing argument
except:
# Rhythmbox 3.3 support
self.player.playpause(True)
def next(self, widget):
"""