Fixed queue status when clearing queue.
parent
fe331624f5
commit
d1adc3d53e
|
@ -645,6 +645,12 @@
|
||||||
|
|
||||||
- (IBAction)emptyQueueList:(id)sender
|
- (IBAction)emptyQueueList:(id)sender
|
||||||
{
|
{
|
||||||
|
for (PlaylistEntry *queueItem in queueList)
|
||||||
|
{
|
||||||
|
[queueItem setStatus:[NSNumber numberWithInteger:kCogEntryNormal]];
|
||||||
|
[queueItem setStatusMessage:nil];
|
||||||
|
}
|
||||||
|
|
||||||
[queueList removeAllObjects];
|
[queueList removeAllObjects];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue