diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2006-09-12 08:55:47 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2006-09-12 08:55:47 +0000 |
commit | bc0943e922fde5c13ba4e01b9e372db6ee598765 (patch) | |
tree | 72f5eda475f552d666f99b45d0a8094996c832a7 /apps | |
parent | 7343863a2163a00a14725eb9420e7fda5707fef4 (diff) |
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
Diffstat (limited to 'apps')
-rw-r--r-- | apps/screens.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |