From 0c06e5fe9063db11049d1b1ecf41825d2a803cd5 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Thu, 7 Sep 2017 12:27:54 +0200 Subject: Add file view menu to file browser Allows changing file sort options directly through context menu in the file browser rather than having to exit the browser and go through General Settings>File_View Change-Id: Iec124d512dcb934bd261b2144a699c23f536c165 --- apps/onplay.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/onplay.c') diff --git a/apps/onplay.c b/apps/onplay.c index 091680e949..f44d339246 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -69,6 +69,7 @@ static int context; static const char *selected_file = NULL; static int selected_file_attr = 0; static int onplay_result = ONPLAY_OK; +extern struct menu_item_ex file_menu; /* settings_menu.c */ /* redefine MAKE_MENU so the MENU_EXITAFTERTHISMENU flag can be added easily */ #define MAKE_ONPLAYMENU( name, str, callback, icon, ... ) \ @@ -1397,7 +1398,7 @@ MAKE_ONPLAYMENU( tree_onplay_menu, ID2P(LANG_ONPLAY_MENU_TITLE), #ifdef HAVE_RECORDING &set_recdir_item, #endif - &set_startdir_item, &add_to_faves_item, + &set_startdir_item, &add_to_faves_item, &file_menu, ); static int onplaymenu_callback(int action,const struct menu_item_ex *this_item) { -- cgit