Pause after plugin fixes

The pause after current song plugin was using the old pause function,
and not the new one.
This commit is contained in:
Bryan Schumaker 2010-11-27 15:56:47 -05:00
parent 2998e13d6c
commit cfd135c299

View File

@ -8,7 +8,7 @@ do_pause = False
def check_pause(*args):
global do_pause
if do_pause == True:
libsaria.audio.pause()
libsaria.components.pause()
do_pause = False
def set_pause(*args):