summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2005-09-01 20:23:16 +0000
committerMagnus Holmgren <magnushol@gmail.com>2005-09-01 20:23:16 +0000
commitbc3dbad158cfcddc33cdc2848402c2295c333649 (patch)
tree748b9ae522c7ceeb4e874fcfcc4633a5144035f6
parent904f7fd970aac651474bcc071df53068a866014f (diff)
downloadrockbox-bc3dbad158cfcddc33cdc2848402c2295c333649.tar.gz
rockbox-bc3dbad158cfcddc33cdc2848402c2295c333649.zip
Reintroduce the cursor setting in the menus too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7446 a1c6a512-1295-4272-9138-f99709370657
-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