Fix BasePlaybackController with respect to test_new_playlist_loaded_callback_when_paused

This commit is contained in:
Thomas Adamcik 2010-04-06 21:23:30 +02:00
parent f9200893dd
commit 3957a2c9d7

View File

@ -439,6 +439,8 @@ class BasePlaybackController(object):
self.play()
else:
self.stop()
elif self.state == self.PAUSED:
self.stop()
def next(self):
"""Play the next track."""