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
|
- (IBAction)next:(id)sender
|
||||||
{
|
{
|
||||||
DBLog(@"CALLING: %i %i", playbackStatus, kCogStatusStopped);
|
|
||||||
if ([playlistController next] == NO)
|
if ([playlistController next] == NO)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (playbackStatus != kCogStatusStopped)
|
|
||||||
{
|
|
||||||
DBLog(@"STOPPING");
|
|
||||||
[self stop:self];
|
[self stop:self];
|
||||||
[self playEntry:[playlistController currentEntry]];
|
[self playEntry:[playlistController currentEntry]];
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)prev:(id)sender
|
- (IBAction)prev:(id)sender
|
||||||
|
@ -171,11 +166,8 @@
|
||||||
if ([playlistController prev] == nil)
|
if ([playlistController prev] == nil)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (playbackStatus != kCogStatusStopped)
|
|
||||||
{
|
|
||||||
[self stop:self];
|
[self stop:self];
|
||||||
[self playEntry:[playlistController currentEntry]];
|
[self playEntry:[playlistController currentEntry]];
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)seek:(id)sender
|
- (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.
|
PLS icon.
|
||||||
Incubate.
|
Incubate.
|
||||||
|
|
Loading…
Reference in a new issue