summaryrefslogtreecommitdiff
path: root/apps/menu.c
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-04 07:18:36 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-04 07:18:36 +0000
commitcbbdc95d9ccb5dc678daa9e22aeed81dfe72ef8e (patch)
treee7ce1fc3e7b7e0a935470d76e934599000886afd /apps/menu.c
parent12a4ba0d76cff7976055819965ae1a8e92a502bd (diff)
downloadrockbox-cbbdc95d9ccb5dc678daa9e22aeed81dfe72ef8e.zip
rockbox-cbbdc95d9ccb5dc678daa9e22aeed81dfe72ef8e.tar.gz
rockbox-cbbdc95d9ccb5dc678daa9e22aeed81dfe72ef8e.tar.bz2
rockbox-cbbdc95d9ccb5dc678daa9e22aeed81dfe72ef8e.tar.xz
Fixed a bug in the multi-screen menus, the statusbar wasn't refreshed when coming from some custom wps that erases it ; Initial support for options in the menus
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7747 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.c')
-rw-r--r--apps/menu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menu.c b/apps/menu.c
index 83826e3..b682bec 100644
--- a/apps/menu.c
+++ b/apps/menu.c
@@ -125,6 +125,7 @@ int menu_show(int m)
int key;
gui_synclist_draw(&(menus[m].synclist));
+ gui_syncstatusbar_draw(&statusbars, true);
menu_talk_selected(m);
while (!exit) {
key = button_get_w_tmo(HZ/2);