Mousewheel up will play next song, down will play previous song

This commit is contained in:
Matthieu Coudron 2014-09-05 00:07:03 +02:00
parent 32c1b36c93
commit f5520e220b

View File

@ -104,3 +104,15 @@ class MPD(IntervalModule):
self._mpd_command(self.s, "next")
except Exception as e:
pass
def on_upscroll(self):
try:
self._mpd_command(self.s, "next")
except Exception as e:
pass
def on_downscroll(self):
try:
self._mpd_command(self.s, "previous")
except Exception as e:
pass