summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/menus/settings_menu.c2
-rw-r--r--apps/recorder/icons.c3
-rw-r--r--apps/recorder/icons.h3
3 files changed, 7 insertions, 1 deletions
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index 399002cd14..d7a9cc5478 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -91,7 +91,7 @@ static int fileview_callback(int action,const struct menu_item_ex *this_item)
91 return action; 91 return action;
92} 92}
93 93
94MAKE_MENU(file_menu, ID2P(LANG_FILE), 0, NOICON, 94MAKE_MENU(file_menu, ID2P(LANG_FILE), 0, bitmap_icons_6x8[Icon_file_view_menu],
95 &sort_case, &sort_dir, &sort_file, 95 &sort_case, &sort_dir, &sort_file,
96 &dirfilter, &browse_current, &show_path_in_browser, 96 &dirfilter, &browse_current, &show_path_in_browser,
97#ifdef HAVE_TAGCACHE 97#ifdef HAVE_TAGCACHE
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index cf9720d94f..3c66fbd129 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -74,7 +74,10 @@ const unsigned char bitmap_icons_6x8[][6] =
74 { 0x7f, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, /* playback menu */ 74 { 0x7f, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, /* playback menu */
75 { 0x1f, 0x51, 0x71, 0x71, 0x51, 0x1f }, /* display menu */ 75 { 0x1f, 0x51, 0x71, 0x71, 0x51, 0x1f }, /* display menu */
76 { 0x1e, 0x32, 0x32, 0x32, 0x1e, 0x00 }, /* remote display menu */ 76 { 0x1e, 0x32, 0x32, 0x32, 0x1e, 0x00 }, /* remote display menu */
77#if CONFIG_TUNER
77 { 0x03, 0x05, 0x7f, 0x05, 0x03, 0x00 }, /* radio */ 78 { 0x03, 0x05, 0x7f, 0x05, 0x03, 0x00 }, /* radio */
79#endif
80 { 0x1f, 0x11, 0x7d, 0x46, 0x44, 0x78 }, /* File View Menu */
78}; 81};
79 82
80const unsigned char bitmap_icons_7x8[][7] = 83const unsigned char bitmap_icons_7x8[][7] =
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index bef1fa617b..a2a0e95aa6 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -78,7 +78,10 @@ enum icons_6x8 {
78 Icon_Playback_menu, 78 Icon_Playback_menu,
79 Icon_Display_menu, 79 Icon_Display_menu,
80 Icon_Remote_Display_menu, 80 Icon_Remote_Display_menu,
81#if CONFIG_TUNER
81 Icon_Radio_screen, 82 Icon_Radio_screen,
83#endif
84 Icon_file_view_menu,
82 Icon6x8Last, 85 Icon6x8Last,
83}; 86};
84 87