diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-03-26 03:35:24 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-03-26 03:35:24 +0000 |
commit | 5ca15399690a686646d4739b3f4c51c62cc88b68 (patch) | |
tree | 1c12dc34bae30aedcb38bf5ceed8a2fcedc250c8 /apps/menus/eq_menu.c | |
parent | af395f4db6ad7b83f9d9afefb1c0ceeedd140a45 (diff) |
the menu and list now accepts a parent viewport to draw in (and the menu can be told to not show status/button bars). This lays the groundwork to fix colour problems with plugin menus (see star.c for an example.) This hopefully fixes some button bar issues as well as theme problems.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16812 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/eq_menu.c')
-rw-r--r-- | apps/menus/eq_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c index 2337b32e6d..9b8c2e3e6b 100644 --- a/apps/menus/eq_menu.c +++ b/apps/menus/eq_menu.c @@ -199,7 +199,7 @@ int do_center_band_menu(void* param) menu.flags = MT_MENU|(3<<MENU_COUNT_SHIFT)|MENU_HAS_DESC; menu.submenus = band_items[band-1]; menu.callback_and_desc = &cb_and_desc; - do_menu(&menu, NULL); + do_menu(&menu, NULL, NULL, false); return 0; } MAKE_MENU(band_0_menu, ID2P(LANG_EQUALIZER_BAND_LOW_SHELF), NULL, |