Commit cd296762 authored by Clément Stenac's avatar Clément Stenac

Only show category and artist-sorted views

parent c1ae1300
...@@ -1362,13 +1362,13 @@ wxMenu * Playlist::ViewMenu() ...@@ -1362,13 +1362,13 @@ wxMenu * Playlist::ViewMenu()
/* FIXME : have a list of "should have" views */ /* FIXME : have a list of "should have" views */
p_view_menu->Append( FirstView_Event + VIEW_CATEGORY, p_view_menu->Append( FirstView_Event + VIEW_CATEGORY,
wxU(_("By category") ) ); wxU(_("Normal") ) );
p_view_menu->Append( FirstView_Event + VIEW_SIMPLE, /* p_view_menu->Append( FirstView_Event + VIEW_SIMPLE,
wxU(_("Manually added") ) ); wxU(_("Manually added") ) );
p_view_menu->Append( FirstView_Event + VIEW_ALL, p_view_menu->Append( FirstView_Event + VIEW_ALL,
wxU(_("All items, unsorted") ) ); wxU(_("All items, unsorted") ) ); */
p_view_menu->Append( FirstView_Event + VIEW_S_AUTHOR, p_view_menu->Append( FirstView_Event + VIEW_S_AUTHOR,
wxU(_("Sorted by author") ) ); wxU(_("Sorted by artist") ) );
vlc_object_release( p_playlist); vlc_object_release( p_playlist);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment