From e9b58b7e467939e1aa8a31df85c492df176a1e16 Mon Sep 17 00:00:00 2001 From: jethead71 Date: Wed, 28 Jan 2009 21:59:24 +0000 Subject: [PATCH] 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 --- apps/menus/main_menu.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index 598373116..01b4dbe07 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), -- 2.11.4.GIT