From b4c81a444164ecb07e733bdfbf127633554c5643 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Fri, 29 Apr 2016 14:42:02 -0400 Subject: [PATCH] gui/playlist: Change "Banned" to "Hidden" in the sidebar I also update the icon to match what is on the "Hide Track" button. Fixes #49: Hidden playlist still says "Banned" in sidebar Signed-off-by: Anna Schumaker --- gui/playlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/playlist.c b/gui/playlist.c index 8ee2da09..2d593995 100644 --- a/gui/playlist.c +++ b/gui/playlist.c @@ -64,7 +64,7 @@ void gui_playlist_init() /* Add playlists. */ __playlist_add(&parent, "Favorites", "emblem-favorite", PL_FAVORITED); - __playlist_add(&parent, "Banned", "face-sad",PL_HIDDEN); + __playlist_add(&parent, "Hidden", "window-close",PL_HIDDEN); __playlist_add(&parent, "Most Played", "go-up", PL_MOST_PLAYED); __playlist_add(&parent, "Least Played", "go-down", PL_LEAST_PLAYED); __playlist_add(&parent, "Unplayed", "audio-x-generic", PL_UNPLAYED);