# HG changeset patch # User nhjm449 # Date 1144714724 25200 # Node ID ddadd6828a1a3a1b59d3f42e5cdded31cc6f2b2e # Parent 4ed0e954cc691afdd6f155d674212d003d75c7b5 [svn] - Fix playlist_set_position when paused diff -r 4ed0e954cc69 -r ddadd6828a1a audacious/playlist.c --- a/audacious/playlist.c Sun Apr 09 23:36:13 2006 -0700 +++ b/audacious/playlist.c Mon Apr 10 17:18:44 2006 -0700 @@ -1062,7 +1062,9 @@ if (bmp_playback_get_playing()) { /* We need to stop before changing playlist_position */ PLAYLIST_UNLOCK(); + ip_data.stop = TRUE; bmp_playback_stop(); + ip_data.stop = FALSE; PLAYLIST_LOCK(); restart_playing = TRUE; }