forked from len0rd/rockbox
Redraw the menu when stopping playback, in case the bookmarking code left something on screen.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14196 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9d1e5e4d85
commit
1d9f693658
2 changed files with 2 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected)
|
||||||
}
|
}
|
||||||
else if (action == ACTION_TREE_STOP)
|
else if (action == ACTION_TREE_STOP)
|
||||||
{
|
{
|
||||||
list_stop_handler();
|
redraw_lists = list_stop_handler();
|
||||||
}
|
}
|
||||||
else if (action == ACTION_STD_CONTEXT &&
|
else if (action == ACTION_STD_CONTEXT &&
|
||||||
menu == &root_menu_)
|
menu == &root_menu_)
|
||||||
|
|
|
||||||
|
|
@ -709,6 +709,7 @@ bool list_stop_handler(void)
|
||||||
fade(0);
|
fade(0);
|
||||||
bookmark_autobookmark();
|
bookmark_autobookmark();
|
||||||
audio_stop();
|
audio_stop();
|
||||||
|
ret = true; /* bookmarking can make a refresh necessary */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if CONFIG_CHARGING
|
#if CONFIG_CHARGING
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue