From bc0943e922fde5c13ba4e01b9e372db6ee598765 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Tue, 12 Sep 2006 08:55:47 +0000 Subject: fix the status bar not updatng correctly in the id3 viewer (FS:5973) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10931 a1c6a512-1295-4272-9138-f99709370657 --- apps/screens.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/screens.c b/apps/screens.c index 4f2d464728..d9cfc11d00 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -1132,11 +1132,13 @@ bool browse_id3(void) gui_synclist_init(&id3_lists, &id3_get_info, id3, true, 2); gui_synclist_set_nb_items(&id3_lists, ID3_ITEMS*2); gui_synclist_draw(&id3_lists); + gui_syncstatusbar_draw(&statusbars, true); 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)) + if(key!=ACTION_NONE && key!=ACTION_UNKNOWN + && !gui_synclist_do_button(&id3_lists, key)) { action_signalscreenchange(); return(default_event_handler(key) == SYS_USB_CONNECTED); -- cgit v1.2.3