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 6d314254d8
commit b8c007d2ea
1 changed files with 1 additions and 1 deletions

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):