From e58c172eeb0fdc70531c1f6e3f5ce457126dc7f4 Mon Sep 17 00:00:00 2001 From: areff Date: Fri, 22 Feb 2008 15:34:09 +0000 Subject: [PATCH] Fixed small oversight, queuePosition not being reset to -1 when removed from queue by being played. --- Playlist/PlaylistController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Playlist/PlaylistController.m b/Playlist/PlaylistController.m index 4026f83b1..7ad01af34 100644 --- a/Playlist/PlaylistController.m +++ b/Playlist/PlaylistController.m @@ -394,6 +394,7 @@ [queueList removeObjectAtIndex:0]; [pe setStatus:[NSNumber numberWithInteger:kCogEntryNormal]]; [pe setStatusMessage:nil]; + [pe setQueuePosition:-1]; int i; for (i = 0; i < [queueList count]; i++)