mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Give the file view menu a nice icon
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12397 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b85e1b9235
commit
f98c27f60f
3 changed files with 7 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ static int fileview_callback(int action,const struct menu_item_ex *this_item)
|
||||||
return action;
|
return action;
|
||||||
}
|
}
|
||||||
|
|
||||||
MAKE_MENU(file_menu, ID2P(LANG_FILE), 0, NOICON,
|
MAKE_MENU(file_menu, ID2P(LANG_FILE), 0, bitmap_icons_6x8[Icon_file_view_menu],
|
||||||
&sort_case, &sort_dir, &sort_file,
|
&sort_case, &sort_dir, &sort_file,
|
||||||
&dirfilter, &browse_current, &show_path_in_browser,
|
&dirfilter, &browse_current, &show_path_in_browser,
|
||||||
#ifdef HAVE_TAGCACHE
|
#ifdef HAVE_TAGCACHE
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,10 @@ const unsigned char bitmap_icons_6x8[][6] =
|
||||||
{ 0x7f, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, /* playback menu */
|
{ 0x7f, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, /* playback menu */
|
||||||
{ 0x1f, 0x51, 0x71, 0x71, 0x51, 0x1f }, /* display menu */
|
{ 0x1f, 0x51, 0x71, 0x71, 0x51, 0x1f }, /* display menu */
|
||||||
{ 0x1e, 0x32, 0x32, 0x32, 0x1e, 0x00 }, /* remote display menu */
|
{ 0x1e, 0x32, 0x32, 0x32, 0x1e, 0x00 }, /* remote display menu */
|
||||||
|
#if CONFIG_TUNER
|
||||||
{ 0x03, 0x05, 0x7f, 0x05, 0x03, 0x00 }, /* radio */
|
{ 0x03, 0x05, 0x7f, 0x05, 0x03, 0x00 }, /* radio */
|
||||||
|
#endif
|
||||||
|
{ 0x1f, 0x11, 0x7d, 0x46, 0x44, 0x78 }, /* File View Menu */
|
||||||
};
|
};
|
||||||
|
|
||||||
const unsigned char bitmap_icons_7x8[][7] =
|
const unsigned char bitmap_icons_7x8[][7] =
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,10 @@ enum icons_6x8 {
|
||||||
Icon_Playback_menu,
|
Icon_Playback_menu,
|
||||||
Icon_Display_menu,
|
Icon_Display_menu,
|
||||||
Icon_Remote_Display_menu,
|
Icon_Remote_Display_menu,
|
||||||
|
#if CONFIG_TUNER
|
||||||
Icon_Radio_screen,
|
Icon_Radio_screen,
|
||||||
|
#endif
|
||||||
|
Icon_file_view_menu,
|
||||||
Icon6x8Last,
|
Icon6x8Last,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue