On second thought, let's not allow other repeat modes to wrap around the playlist boundary, either

CQTexperiment
Chris Moeller 2015-02-07 23:38:16 -08:00
parent 321a5ea23f
commit 25236a254a
1 changed files with 1 additions and 1 deletions

View File

@ -501,7 +501,7 @@
RepeatMode repeat = [self repeat];
if (i < 0 || i >= [[self arrangedObjects] count] ) {
if ( repeat == RepeatNone )
if ( repeat != RepeatAll )
return nil;
while ( i < 0 )