Fixed small bug in Repeat All and pressing next at last playlist entry. Enabled Shuffle button.
parent
f20b10fdd4
commit
402b403794
File diff suppressed because it is too large
Load Diff
|
@ -431,8 +431,11 @@
|
||||||
if (pe == nil)
|
if (pe == nil)
|
||||||
{
|
{
|
||||||
// we are at end of shuffle list, and repeat all is requested
|
// we are at end of shuffle list, and repeat all is requested
|
||||||
if ((shuffle = YES) && (repeat == RepeatAll))
|
if (repeat == RepeatAll)
|
||||||
pe = [self shuffledEntryAtIndex:0];
|
if (shuffle == YES)
|
||||||
|
pe = [self shuffledEntryAtIndex:0];
|
||||||
|
else
|
||||||
|
pe = [self entryAtIndex:0];
|
||||||
else
|
else
|
||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue