diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-06-07 11:04:09 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-06-07 11:04:09 +0000 |
commit | 1ce70a679c645c1886eff1d96c5c9f2a630066d6 (patch) | |
tree | c8923657ef6108481f789314202ba35c4563c0fb /apps/plugins/text_viewer/text_viewer.c | |
parent | 04fd0ce374ff3b7c21ec9619a9b35f796b4d9168 (diff) | |
download | rockbox-1ce70a679c645c1886eff1d96c5c9f2a630066d6.tar.gz rockbox-1ce70a679c645c1886eff1d96c5c9f2a630066d6.zip |
text viewer: can selected scroll by column/scroll by screen for the horizontal screen.
Viewer Options: "Scrollbar", "Overlap Pages", "Auto-Scroll Speed" move to Scroll Settings > Vertical.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26654 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_viewer/text_viewer.c')
-rw-r--r-- | apps/plugins/text_viewer/text_viewer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/text_viewer/text_viewer.c b/apps/plugins/text_viewer/text_viewer.c index 452f7108a6..ea8972491b 100644 --- a/apps/plugins/text_viewer/text_viewer.c +++ b/apps/plugins/text_viewer/text_viewer.c | |||
@@ -111,7 +111,7 @@ enum plugin_status plugin_start(const void* file) | |||
111 | if (prefs->windows > 1) | 111 | if (prefs->windows > 1) |
112 | { | 112 | { |
113 | /* Screen left */ | 113 | /* Screen left */ |
114 | tv_scroll_left(TV_HORIZONTAL_SCROLL_WINDOW); | 114 | tv_scroll_left(TV_HORIZONTAL_SCROLL_PREFS); |
115 | } | 115 | } |
116 | else { /* prefs->windows == 1 */ | 116 | else { /* prefs->windows == 1 */ |
117 | /* scroll to previous page */ | 117 | /* scroll to previous page */ |
@@ -128,7 +128,7 @@ enum plugin_status plugin_start(const void* file) | |||
128 | if (prefs->windows > 1) | 128 | if (prefs->windows > 1) |
129 | { | 129 | { |
130 | /* Screen right */ | 130 | /* Screen right */ |
131 | tv_scroll_right(TV_HORIZONTAL_SCROLL_WINDOW); | 131 | tv_scroll_right(TV_HORIZONTAL_SCROLL_PREFS); |
132 | } | 132 | } |
133 | else { /* prefs->windows == 1 */ | 133 | else { /* prefs->windows == 1 */ |
134 | /* scroll to next page */ | 134 | /* scroll to next page */ |