summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-08 10:52:09 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-08 10:52:09 +0000
commit5f6047075f682e92fe9c3faf67c6d58046ef83ae (patch)
treeb7d6e33e00aed4c7e8c32f2ac47258fe7299b665 /apps/settings_menu.c
parent64c53c6dc25b70ef469398b1362a64c4f4413aad (diff)
downloadrockbox-5f6047075f682e92fe9c3faf67c6d58046ef83ae.tar.gz
rockbox-5f6047075f682e92fe9c3faf67c6d58046ef83ae.zip
Patch #985429 by Christi Scarborough, solid progress bar
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 057191e603..9aae28a425 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -959,6 +959,12 @@ static bool button_bar(void)
959{ 959{
960 return set_bool( str(LANG_BUTTON_BAR), &global_settings.buttonbar ); 960 return set_bool( str(LANG_BUTTON_BAR), &global_settings.buttonbar );
961} 961}
962
963static bool progressbar_solid(void)
964{
965 return set_bool( str(LANG_PROGRESSBAR_SOLID),
966 &global_settings.progressbar_solid );
967}
962#endif 968#endif
963 969
964static bool ff_rewind_settings_menu(void) 970static bool ff_rewind_settings_menu(void)
@@ -1192,6 +1198,7 @@ static bool display_settings_menu(void)
1192#ifdef HAVE_LCD_BITMAP 1198#ifdef HAVE_LCD_BITMAP
1193 { STR(LANG_BARS_MENU), bars_settings_menu }, 1199 { STR(LANG_BARS_MENU), bars_settings_menu },
1194 { STR(LANG_PM_MENU), peak_meter_menu }, 1200 { STR(LANG_PM_MENU), peak_meter_menu },
1201 { STR(LANG_PROGRESSBAR_SOLID), progressbar_solid },
1195#endif 1202#endif
1196 }; 1203 };
1197 1204