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/tv_preferences.h | |
parent | 04fd0ce374ff3b7c21ec9619a9b35f796b4d9168 (diff) |
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/tv_preferences.h')
-rw-r--r-- | apps/plugins/text_viewer/tv_preferences.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/plugins/text_viewer/tv_preferences.h b/apps/plugins/text_viewer/tv_preferences.h index ca02c2b5c9..dc29dcae26 100644 --- a/apps/plugins/text_viewer/tv_preferences.h +++ b/apps/plugins/text_viewer/tv_preferences.h @@ -71,9 +71,14 @@ struct tv_preferences { } footer_mode; enum { - PAGE=0, + SCREEN = 0, + COLUMN, + } horizontal_scroll_mode; + + enum { + PAGE = 0, LINE, - } scroll_mode; + } vertical_scroll_mode; int autoscroll_speed; |