summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtkplaylist.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gtkplaylist.c b/gtkplaylist.c
index 01594675..488c1dfb 100644
--- a/gtkplaylist.c
+++ b/gtkplaylist.c
@@ -1364,11 +1364,8 @@ gtkpl_playsong (gtkplaylist_t *ps) {
if (p_ispaused ()) {
p_unpause ();
}
- else if (playlist_current_ptr) {
- p_stop ();
- streamer_set_nextsong (gtkpl_get_idx_of (ps, playlist_current_ptr), 1);
- }
else if (ps->row != -1) {
+ p_stop ();
streamer_set_nextsong (ps->row, 1);
}
else {