diff options
Diffstat (limited to 'apps/settings_menu.c')
| -rw-r--r-- | apps/settings_menu.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index e336585..c1b113f 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -67,6 +67,13 @@ static bool invert_cursor(void) return rc; } +static bool caption_backlight(void) +{ + bool rc = set_bool( str(LANG_CAPTION_BACKLIGHT), + &global_settings.caption_backlight); + + return rc; +} /** * Menu to configure the battery display on status bar */ @@ -752,6 +759,7 @@ static bool display_settings_menu(void) { str(LANG_PM_MENU), peak_meter_menu }, { str(LANG_VOLUME_DISPLAY), volume_type }, { str(LANG_BATTERY_DISPLAY), battery_type }, + { str(LANG_CAPTION_BACKLIGHT), caption_backlight }, #endif }; |