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 <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-04-29 14:42:02 -04:00
parent 9f3b8ae239
commit b4c81a4441
1 changed files with 1 additions and 1 deletions

View File

@ -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);