diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-30 11:10:08 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-30 11:10:08 +0000 |
| commit | f43216ff0bc6fdf7c2339aefc6c56be09249ce06 (patch) | |
| tree | 04f30ecbf442f66971ebb432c3382119f8238651 /apps/settings_menu.c | |
| parent | 5efbdb76aa15dc86f2158912b23ad64111ed0b90 (diff) | |
| download | rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.zip rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.tar.gz rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.tar.bz2 rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.tar.xz | |
Removed the line selector option, it is now always an inverse bar (except for the Player/Studio of course)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7423 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
| -rw-r--r-- | apps/settings_menu.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index a614723..4af1c75 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -269,18 +269,6 @@ static bool flip_display(void) } /** - * Menu to set Line Selector Type (Pointer/Bar) - */ -static bool invert_cursor(void) -{ - return set_bool_options(str(LANG_INVERT_CURSOR), - &global_settings.invert_cursor, - STR(LANG_INVERT_CURSOR_BAR), - STR(LANG_INVERT_CURSOR_POINTER), - NULL); -} - -/** * Menu to reverse Hebrew and Arabic text according to BiDi algorythm */ static bool bidi_support(void) @@ -1440,7 +1428,6 @@ static bool lcd_settings_menu(void) #ifdef HAVE_LCD_BITMAP { ID2P(LANG_INVERT), invert }, { ID2P(LANG_FLIP_DISPLAY), flip_display }, - { ID2P(LANG_INVERT_CURSOR), invert_cursor }, #endif }; @@ -1462,7 +1449,6 @@ static bool lcd_remote_settings_menu(void) { ID2P(LANG_CONTRAST), remote_contrast }, { ID2P(LANG_INVERT), remote_invert }, { ID2P(LANG_FLIP_DISPLAY), remote_flip_display }, -/* { ID2P(LANG_INVERT_CURSOR), invert_cursor },*/ }; m=menu_init( items, sizeof(items) / sizeof(*items), NULL, |