summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tagtree.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 711ca63941..ef4591fe04 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -1581,7 +1581,12 @@ static bool insert_all_playlist(struct tree_context *c, int position, bool queue
1581 { 1581 {
1582 if (playlist_remove_all_tracks(NULL) == 0) 1582 if (playlist_remove_all_tracks(NULL) == 0)
1583 position = PLAYLIST_INSERT_LAST; 1583 position = PLAYLIST_INSERT_LAST;
1584 else return -1; } 1584 else
1585 {
1586 cpu_boost(false);
1587 return false;
1588 }
1589 }
1585 1590
1586 if (position == PLAYLIST_INSERT_FIRST) 1591 if (position == PLAYLIST_INSERT_FIRST)
1587 { 1592 {