Reset queue offset when using play items

Since we clear the queue, we must also clear the offset..
This commit is contained in:
Christopher Eby 2011-09-11 00:38:12 -05:00
parent 744432a744
commit 027489b4a1

View File

@ -396,7 +396,7 @@ public final class SongTimeline {
for (int j = 0; j != songs.length; ++j)
timeline.add(new Song(songs[j]));
mQueueOffset += songs.length - 1;
mQueueOffset = songs.length - 1;
}
}