From: RĂ©mi Duraffort Date: Fri, 10 Jul 2009 12:51:22 +0000 (+0200) Subject: Fix mpris python script: the commands are *Set*(Loop|Random). X-Git-Tag: 1.1.0-ff~5039 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=fb98def5d9e5400990d7a3c48e4d820c74f92860;p=vlc Fix mpris python script: the commands are *Set*(Loop|Random). --- diff --git a/extras/misc/mpris.py b/extras/misc/mpris.py index ff15e359c2..1c5bf71e1d 100755 --- a/extras/misc/mpris.py +++ b/extras/misc/mpris.py @@ -173,12 +173,12 @@ def Repeat(widget): def Shuffle(widget): global shuffle shuffle = not shuffle - tracklist.Random(shuffle) + tracklist.SetRandom(shuffle) def Loop(widget): global loop loop = not loop - tracklist.Loop(loop) + tracklist.SetLoop(loop) # update status display def update(widget):