1
0
Fork 0
forked from len0rd/rockbox

Fix FS#7176 - wps context menu doesnt set the correct selection.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13445 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-05-20 14:24:02 +00:00
parent cfa94a206c
commit fd9d140119

View file

@ -599,8 +599,17 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected)
}
action_signalscreenchange();
if (start_selected)
{
/* make sure the start_selected variable is set to
the selected item from the menu do_menu() was called from */
if (stack_top > 0)
{
menu = menu_stack[0];
init_menu_lists(menu,&lists,menu_stack_selected_item[0],true);
}
*start_selected = get_menu_selection(
gui_synclist_get_sel_pos(&lists), menu);
}
return ret;
}