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.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index a614723ca5..4af1c75b19 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -269,18 +269,6 @@ 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/**
284 * Menu to reverse Hebrew and Arabic text according to BiDi algorythm 272 * Menu to reverse Hebrew and Arabic text according to BiDi algorythm
285 */ 273 */
286static bool bidi_support(void) 274static bool bidi_support(void)
@@ -1440,7 +1428,6 @@ static bool lcd_settings_menu(void)
1440#ifdef HAVE_LCD_BITMAP 1428#ifdef HAVE_LCD_BITMAP
1441 { ID2P(LANG_INVERT), invert }, 1429 { ID2P(LANG_INVERT), invert },
1442 { ID2P(LANG_FLIP_DISPLAY), flip_display }, 1430 { ID2P(LANG_FLIP_DISPLAY), flip_display },
1443 { ID2P(LANG_INVERT_CURSOR), invert_cursor },
1444#endif 1431#endif
1445 }; 1432 };
1446 1433
@@ -1462,7 +1449,6 @@ static bool lcd_remote_settings_menu(void)
1462 { ID2P(LANG_CONTRAST), remote_contrast }, 1449 { ID2P(LANG_CONTRAST), remote_contrast },
1463 { ID2P(LANG_INVERT), remote_invert }, 1450 { ID2P(LANG_INVERT), remote_invert },
1464 { ID2P(LANG_FLIP_DISPLAY), remote_flip_display }, 1451 { ID2P(LANG_FLIP_DISPLAY), remote_flip_display },
1465/* { ID2P(LANG_INVERT_CURSOR), invert_cursor },*/
1466 }; 1452 };
1467 1453
1468 m=menu_init( items, sizeof(items) / sizeof(*items), NULL, 1454 m=menu_init( items, sizeof(items) / sizeof(*items), NULL,