1
0
Fork 0
forked from len0rd/rockbox

Fix FS#9842 by stopping scrolling before leaving the yesno screen.

Seems there are more of this scrolling problems around. In this case it's a rather old bug actually.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22633 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-09-05 18:10:41 +00:00
parent 50c3c76b13
commit dee9277a09

View file

@ -185,5 +185,8 @@ enum yesno_res gui_syncyesno_run(const struct text_message * main_message,
}
if(result_displayed)
sleep(HZ);
FOR_NB_SCREENS(i) /* stop scrolling before getting out */
screens[i].scroll_stop(yn[i].vp);
return(result);
}