1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michael Sevakis 2009-01-28 21:59:24 +00:00
parent 4118de4cc8
commit 077ce00fdd

View file

@ -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) 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) if (action == ACTION_STD_CANCEL)
return action; return action;
else if ((action == ACTION_STD_OK) else if ((action == ACTION_STD_OK)
@ -411,9 +406,6 @@ static bool show_info(void)
if(global_settings.talk_menu) if(global_settings.talk_menu)
info.get_talk = info_speak_item; info.get_talk = info_speak_item;
info.action_callback = info_action_callback; info.action_callback = info_action_callback;
#if CONFIG_CHARGING
info.timeout = HZ;
#endif
return simplelist_show_list(&info); return simplelist_show_list(&info);
} }
MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_ROCKBOX_INFO), MENUITEM_FUNCTION(show_info_item, 0, ID2P(LANG_ROCKBOX_INFO),