summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/settings_menu.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 4af1c75b19..1bbb09d8b0 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -269,6 +269,18 @@ static bool flip_display(void)
269} 269}
270 270
271/** 271/**
272 * Menu to set Line Selector Type (Pointer/Bar)
273 */
274static bool invert_cursor(void)
275{
276 return set_bool_options(str(LANG_INVERT_CURSOR),
277 &global_settings.invert_cursor,
278 STR(LANG_INVERT_CURSOR_BAR),
279 STR(LANG_INVERT_CURSOR_POINTER),
280 NULL);
281}
282
283 /**
272 * Menu to reverse Hebrew and Arabic text according to BiDi algorythm 284 * Menu to reverse Hebrew and Arabic text according to BiDi algorythm
273 */ 285 */
274static bool bidi_support(void) 286static bool bidi_support(void)
@@ -1428,6 +1440,7 @@ static bool lcd_settings_menu(void)
1428#ifdef HAVE_LCD_BITMAP 1440#ifdef HAVE_LCD_BITMAP
1429 { ID2P(LANG_INVERT), invert }, 1441 { ID2P(LANG_INVERT), invert },
1430 { ID2P(LANG_FLIP_DISPLAY), flip_display }, 1442 { ID2P(LANG_FLIP_DISPLAY), flip_display },
1443 { ID2P(LANG_INVERT_CURSOR), invert_cursor },
1431#endif 1444#endif
1432 }; 1445 };
1433 1446