mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-05-12 19:53:18 -04:00
charcell doesnt show titles in lists, so remove the "show path" setting and free up some bin space
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16069 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f4f90c2283
commit
189f9e2be9
5 changed files with 16 additions and 3 deletions
|
|
@ -94,7 +94,9 @@ MENUITEM_SETTING(sort_file, &global_settings.sort_file, fileview_callback);
|
|||
MENUITEM_SETTING(dirfilter, &global_settings.dirfilter, NULL);
|
||||
MENUITEM_SETTING(show_filename_ext, &global_settings.show_filename_ext, NULL);
|
||||
MENUITEM_SETTING(browse_current, &global_settings.browse_current, NULL);
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
MENUITEM_SETTING(show_path_in_browser, &global_settings.show_path_in_browser, NULL);
|
||||
#endif
|
||||
static int fileview_callback(int action,const struct menu_item_ex *this_item)
|
||||
{
|
||||
static int oldval;
|
||||
|
|
@ -115,7 +117,10 @@ static int fileview_callback(int action,const struct menu_item_ex *this_item)
|
|||
MAKE_MENU(file_menu, ID2P(LANG_FILE), 0, Icon_file_view_menu,
|
||||
&sort_case, &sort_dir, &sort_file,
|
||||
&dirfilter, &show_filename_ext, &browse_current,
|
||||
&show_path_in_browser);
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
&show_path_in_browser
|
||||
#endif
|
||||
);
|
||||
/* FILE VIEW MENU */
|
||||
/***********************************/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue