summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2007-04-10 01:14:04 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2007-04-10 01:14:04 +0000
commitad07c23a833b56ea186b15d025d2cca2fddee7d5 (patch)
tree736be2a1dd3c7ef993bbc8e878da79525aca9852
parent81e0c9ce801273284fda3b5f9d4606bca15386de (diff)
downloadrockbox-ad07c23a833b56ea186b15d025d2cca2fddee7d5.tar.gz
rockbox-ad07c23a833b56ea186b15d025d2cca2fddee7d5.zip
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
-rw-r--r--apps/gui/gwps-common.c2
-rw-r--r--docs/CREDITS1
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index cc1f13a145..52ef65c141 100644
--- a/apps/gui/gwps-common.c
+++ b/apps/gui/gwps-common.c
@@ -1887,7 +1887,7 @@ bool gui_wps_refresh(struct gui_wps *gwps,
1887 { 1887 {
1888 /* if the line is a scrolling one we don't want to update 1888 /* if the line is a scrolling one we don't want to update
1889 too often, so that it has the time to scroll */ 1889 too often, so that it has the time to scroll */
1890 if (refresh_mode & WPS_REFRESH_SCROLL) 1890 if ((refresh_mode & WPS_REFRESH_SCROLL) || new_subline_refresh)
1891 write_line(display, &align, line, true); 1891 write_line(display, &align, line, true);
1892 } 1892 }
1893 else 1893 else
diff --git a/docs/CREDITS b/docs/CREDITS
index e454865ad3..6991abe740 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -289,3 +289,4 @@ Denis Stanishevskiy
289Eddy Coman 289Eddy Coman
290Luke Blaney 290Luke Blaney
291Mark Reiche 291Mark Reiche
292Michal Jevjak