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.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 4924b2e093..7f03da975c 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -61,18 +61,21 @@ static bool caption_backlight(void)
61 61
62static bool invert(void) 62static bool invert(void)
63{ 63{
64 bool rc = set_bool( str(LANG_INVERT), &global_settings.invert); 64 bool rc = set_bool_options(str(LANG_INVERT),
65 lcd_set_invert_display(global_settings.invert); 65 &global_settings.invert,
66 str(LANG_INVERT_LCD_INVERSE),
67 str(LANG_INVERT_LCD_NORMAL));
66 68
67 return rc; 69 lcd_set_invert_display(global_settings.invert);
70 return rc;
68} 71}
69 72
70static bool invert_cursor(void) 73static bool invert_cursor(void)
71{ 74{
72 bool rc = set_bool( str(LANG_INVERT_CURSOR), 75 return set_bool_options(str(LANG_INVERT_CURSOR),
73 &global_settings.invert_cursor); 76 &global_settings.invert_cursor,
74 77 str(LANG_INVERT_CURSOR_BAR),
75 return rc; 78 str(LANG_INVERT_CURSOR_POINTER));
76} 79}
77 80
78/** 81/**