From e339e72ec3ef0014074675bd00d44a840c95334b Mon Sep 17 00:00:00 2001 From: Marc Jessome Date: Sat, 4 Jan 2014 13:29:36 -0500 Subject: [PATCH] actions: reset highlight position of main playlist when cleared --- src/actions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/actions.cpp b/src/actions.cpp index dba5751e..0c8d9438 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -1707,6 +1707,7 @@ void ClearMainPlaylist::run() Statusbar::msg("Deleting items..."); clearPlaylist(myPlaylist->main(), delete_fun, clear_fun); Statusbar::msg("Items deleted"); + myPlaylist->main().highlight(0); } }