Revert "Playlist Viewer: Add file properties to playlist entry menu."
This reverts commit 67716c6b46
.
Reason for revert: Only partially working on bare-metal ports, so revert this for now.
Change-Id: I5cea7d2b6466a43aaff4c3eb90ab5d7aee736a5b
This commit is contained in:
parent
a7f2d1ffb4
commit
4f450b6e11
1 changed files with 4 additions and 12 deletions
|
@ -489,8 +489,8 @@ static int onplay_menu(int index)
|
||||||
playlist_buffer_get_track(&viewer.buffer, index);
|
playlist_buffer_get_track(&viewer.buffer, index);
|
||||||
MENUITEM_STRINGLIST(menu_items, ID2P(LANG_PLAYLIST), NULL,
|
MENUITEM_STRINGLIST(menu_items, ID2P(LANG_PLAYLIST), NULL,
|
||||||
ID2P(LANG_CURRENT_PLAYLIST), ID2P(LANG_CATALOG),
|
ID2P(LANG_CURRENT_PLAYLIST), ID2P(LANG_CATALOG),
|
||||||
ID2P(LANG_REMOVE), ID2P(LANG_MOVE), ID2P(LANG_PROPERTIES),
|
ID2P(LANG_REMOVE), ID2P(LANG_MOVE), ID2P(LANG_SHUFFLE),
|
||||||
ID2P(LANG_SHUFFLE), ID2P(LANG_SAVE),
|
ID2P(LANG_SAVE),
|
||||||
ID2P(LANG_PLAYLISTVIEWER_SETTINGS));
|
ID2P(LANG_PLAYLISTVIEWER_SETTINGS));
|
||||||
bool current = (current_track->index == viewer.current_playing_track);
|
bool current = (current_track->index == viewer.current_playing_track);
|
||||||
|
|
||||||
|
@ -547,24 +547,16 @@ static int onplay_menu(int index)
|
||||||
ret = 0;
|
ret = 0;
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
/* file properties */
|
|
||||||
struct playlist_track_info info;
|
|
||||||
playlist_get_track_info(viewer.playlist, current_track->index, &info);
|
|
||||||
|
|
||||||
result = filetype_load_plugin((void *)"properties", info.filename);
|
|
||||||
ret = (result == MENU_ATTACHED_USB) ? -1 : 0;
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
/* shuffle */
|
/* shuffle */
|
||||||
playlist_randomise(viewer.playlist, current_tick, false);
|
playlist_randomise(viewer.playlist, current_tick, false);
|
||||||
ret = 1;
|
ret = 1;
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 5:
|
||||||
/* save playlist */
|
/* save playlist */
|
||||||
save_playlist_screen(viewer.playlist);
|
save_playlist_screen(viewer.playlist);
|
||||||
ret = 0;
|
ret = 0;
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 6:
|
||||||
/* playlist viewer settings */
|
/* playlist viewer settings */
|
||||||
result = do_menu(&viewer_settings_menu, NULL, NULL, false);
|
result = do_menu(&viewer_settings_menu, NULL, NULL, false);
|
||||||
ret = (result == MENU_ATTACHED_USB) ? -1 : 0;
|
ret = (result == MENU_ATTACHED_USB) ? -1 : 0;
|
||||||
|
|
Loading…
Reference in a new issue