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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index e336585866..c1b113ffe4 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -67,6 +67,13 @@ static bool invert_cursor(void)
67 return rc; 67 return rc;
68} 68}
69 69
70static bool caption_backlight(void)
71{
72 bool rc = set_bool( str(LANG_CAPTION_BACKLIGHT),
73 &global_settings.caption_backlight);
74
75 return rc;
76}
70/** 77/**
71 * Menu to configure the battery display on status bar 78 * Menu to configure the battery display on status bar
72 */ 79 */
@@ -752,6 +759,7 @@ static bool display_settings_menu(void)
752 { str(LANG_PM_MENU), peak_meter_menu }, 759 { str(LANG_PM_MENU), peak_meter_menu },
753 { str(LANG_VOLUME_DISPLAY), volume_type }, 760 { str(LANG_VOLUME_DISPLAY), volume_type },
754 { str(LANG_BATTERY_DISPLAY), battery_type }, 761 { str(LANG_BATTERY_DISPLAY), battery_type },
762 { str(LANG_CAPTION_BACKLIGHT), caption_backlight },
755#endif 763#endif
756 }; 764 };
757 765