Fix for incorrect songs being highlighted on quick next/prev.
This commit is contained in:
parent
058feed386
commit
6cf9a03009
2 changed files with 4 additions and 13 deletions
|
@ -153,16 +153,11 @@
|
|||
|
||||
- (IBAction)next:(id)sender
|
||||
{
|
||||
DBLog(@"CALLING: %i %i", playbackStatus, kCogStatusStopped);
|
||||
if ([playlistController next] == NO)
|
||||
return;
|
||||
|
||||
if (playbackStatus != kCogStatusStopped)
|
||||
{
|
||||
DBLog(@"STOPPING");
|
||||
[self stop:self];
|
||||
[self playEntry:[playlistController currentEntry]];
|
||||
}
|
||||
[self stop:self];
|
||||
[self playEntry:[playlistController currentEntry]];
|
||||
}
|
||||
|
||||
- (IBAction)prev:(id)sender
|
||||
|
@ -171,11 +166,8 @@
|
|||
if ([playlistController prev] == nil)
|
||||
return;
|
||||
|
||||
if (playbackStatus != kCogStatusStopped)
|
||||
{
|
||||
[self stop:self];
|
||||
[self playEntry:[playlistController currentEntry]];
|
||||
}
|
||||
[self stop:self];
|
||||
[self playEntry:[playlistController currentEntry]];
|
||||
}
|
||||
|
||||
- (IBAction)seek:(id)sender
|
||||
|
|
1
TODO
1
TODO
|
@ -1,3 +1,2 @@
|
|||
Move all version numbering over to the SVN system. Use long/short version for display in about.
|
||||
PLS icon.
|
||||
Incubate.
|
||||
|
|
Loading…
Reference in a new issue