From d7e8507eaf9ac76d207a51ac850964b9373ba2d3 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Sun, 18 Feb 2007 00:06:20 +0000 Subject: fix for bug #1447 git-svn-id: https://svn.musicpd.org/mpd/trunk@5369 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/playlist.c | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) (limited to 'src/playlist.c') diff --git a/src/playlist.c b/src/playlist.c index b14747fc8..8f4b17804 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1194,12 +1194,26 @@ int moveSongInPlaylist(int fd, int from, int to) playlist.order[i] = to; } } - } else if (playlist.current == from) - playlist.current = to; - else if (playlist.current > from && playlist.current <= to) { - playlist.current--; - } else if (playlist.current >= to && playlist.current < from) { - playlist.current++; + } + else + { + if (playlist.current == from) + playlist.current = to; + else if (playlist.current > from && playlist.current <= to) { + playlist.current--; + } else if (playlist.current >= to && playlist.current < from) { + playlist.current++; + } + + /* this first if statement isn't necessary since the queue + * would have been cleared out if queued == from */ + if (playlist.queued == from) + playlist.queued = to; + else if (playlist.queued > from && playlist.queued <= to) { + playlist.queued--; + } else if (playlist.queued>= to && playlist.queued < from) { + playlist.queued++; + } } incrPlaylistVersion(); -- cgit v1.2.3