mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
only stop scrolling in the menu's viewport not the whole display (Fixes scrolling lines in sbs's being stopped when moving around menus)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24038 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9ca03c74fb
commit
c6352b355c
1 changed files with 2 additions and 2 deletions
|
@ -515,7 +515,7 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
|
||||||
/* might be leaving list, so stop scrolling */
|
/* might be leaving list, so stop scrolling */
|
||||||
FOR_NB_SCREENS(i)
|
FOR_NB_SCREENS(i)
|
||||||
{
|
{
|
||||||
screens[i].stop_scroll();
|
screens[i].scroll_stop(&vps[i]);
|
||||||
}
|
}
|
||||||
if (menu_callback)
|
if (menu_callback)
|
||||||
menu_callback(ACTION_EXIT_MENUITEM, menu);
|
menu_callback(ACTION_EXIT_MENUITEM, menu);
|
||||||
|
@ -548,7 +548,7 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected,
|
||||||
/* entering an item that may not be a list, so stop scrolling */
|
/* entering an item that may not be a list, so stop scrolling */
|
||||||
FOR_NB_SCREENS(i)
|
FOR_NB_SCREENS(i)
|
||||||
{
|
{
|
||||||
screens[i].stop_scroll();
|
screens[i].scroll_stop(&vps[i]);
|
||||||
}
|
}
|
||||||
#ifdef HAVE_BUTTONBAR
|
#ifdef HAVE_BUTTONBAR
|
||||||
if (!hide_bars)
|
if (!hide_bars)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue