summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
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