diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2009-01-28 21:59:24 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2009-01-28 21:59:24 +0000 |
commit | 077ce00fdda0cec473973e5d63696cd634e3a21d (patch) | |
tree | 995dfa8ac4849d40acceccc15655661d90ad4fc5 /apps/menus | |
parent | 4118de4cc87246360cc36a77069460b015cfb21b (diff) |
Forget Info screen auto refresh for now since it messes with text scrolling.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19873 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/main_menu.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index 598373116e..01b4dbe07a 100644 --- a/apps/menus/main_menu.c +++ b/apps/menus/main_menu.c @@ -366,11 +366,6 @@ static int info_speak_item(int selected_item, void * data) static int info_action_callback(int action, struct gui_synclist *lists) { -#if CONFIG_CHARGING - if (action == ACTION_NONE) - return ACTION_REDRAW; - else -#endif if (action == ACTION_STD_CANCEL) return action; else if ((action == ACTION_STD_OK) @@ -411,9 +406,6 @@ static bool show_info(void) if(global_settings.talk_menu) info.get_talk = info_speak_item; info.action_callback = info_action_callback; -#if CONFIG_CHARGING - info.timeout = HZ; -#endif return simplelist_show_list(&info); } MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_ROCKBOX_INFO), |