1
0
Fork 0
forked from len0rd/rockbox

really fix the yes/no screen now, also id3 viewer shows the status bar

correctly


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10630 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2006-08-17 09:28:04 +00:00
parent 5b71470185
commit 07d3db2dec
4 changed files with 5 additions and 5 deletions

View file

@ -1118,13 +1118,13 @@ bool browse_id3(void)
gui_synclist_draw(&id3_lists);
action_signalscreenchange();
while (true) {
gui_syncstatusbar_draw(&statusbars, false);
key = get_action(CONTEXT_LIST,HZ/2);
if(key!=ACTION_NONE && key!=ACTION_UNKNOWN && !gui_synclist_do_button(&id3_lists, key))
{
action_signalscreenchange();
return(default_event_handler(key) == SYS_USB_CONNECTED);
}
gui_syncstatusbar_draw(&statusbars, false);
}
}