code police and make do_menu() obey the hide_bars param which was never meant to be removed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24037 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2e865286bc
commit
9ca03c74fb
1 changed files with 2 additions and 2 deletions
|
@ -343,8 +343,8 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
|
|||
const struct menu_item_ex *temp, *menu;
|
||||
int ret = 0, i;
|
||||
bool redraw_lists;
|
||||
FOR_NB_SCREENS(i)
|
||||
viewportmanager_theme_enable(i, true/*!hide_bars*/, NULL);
|
||||
FOR_NB_SCREENS(i)
|
||||
viewportmanager_theme_enable(i, !hide_bars, NULL);
|
||||
|
||||
const struct menu_item_ex *menu_stack[MAX_MENUS];
|
||||
int menu_stack_selected_item[MAX_MENUS];
|
||||
|
|
Loading…
Reference in a new issue