fix Queue Loop Current track not prepending on enable but appending

This commit is contained in:
Tim Müller 2022-04-13 11:24:59 +02:00
parent a71f65de55
commit fcd376bdcb

@ -157,8 +157,7 @@ namespace TomatenMusic.Music
if (type == LoopType.QUEUE) if (type == LoopType.QUEUE)
{ {
QueueLoopList = new List<TomatenMusicTrack>(Queue); QueueLoopList = new List<TomatenMusicTrack>(QueueLoopList.Prepend(LastTrack));
QueueLoopList.Add(LastTrack);
} }
} }
} }