1
0
Fork 0
forked from len0rd/rockbox

Accept FS#7004 by Michal Jevjak: Fix new sublines not being displayed after scrolling lines. This bug was introduced in the previous WPS commit.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13090 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2007-04-10 01:14:04 +00:00
parent 81e0c9ce80
commit ad07c23a83
2 changed files with 2 additions and 1 deletions

View file

@ -1887,7 +1887,7 @@ bool gui_wps_refresh(struct gui_wps *gwps,
{ {
/* if the line is a scrolling one we don't want to update /* if the line is a scrolling one we don't want to update
too often, so that it has the time to scroll */ too often, so that it has the time to scroll */
if (refresh_mode & WPS_REFRESH_SCROLL) if ((refresh_mode & WPS_REFRESH_SCROLL) || new_subline_refresh)
write_line(display, &align, line, true); write_line(display, &align, line, true);
} }
else else

View file

@ -289,3 +289,4 @@ Denis Stanishevskiy
Eddy Coman Eddy Coman
Luke Blaney Luke Blaney
Mark Reiche Mark Reiche
Michal Jevjak