diff options
| author | Dave Chapman <dave@dchapman.com> | 2008-01-17 11:29:14 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2008-01-17 11:29:14 +0000 |
| commit | d7d073ac1bae22962d32e26591ba575f65e23696 (patch) | |
| tree | f0286e0d6f4f2d1a41813b2e1f4a6508d0228c42 /apps/plugins | |
| parent | 93ddef33b65a4a867909019280c5875a27f0b78f (diff) | |
| download | rockbox-d7d073ac1bae22962d32e26591ba575f65e23696.zip rockbox-d7d073ac1bae22962d32e26591ba575f65e23696.tar.gz rockbox-d7d073ac1bae22962d32e26591ba575f65e23696.tar.bz2 rockbox-d7d073ac1bae22962d32e26591ba575f65e23696.tar.xz | |
Reverse the behaviour of the scrollwheel (i.e. fwd/clockwise is down, back/anti-clockwise is up) in the text viewer for the Sansa. This was accidentally changed in r16045
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16096 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/viewer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index b66c24f..13bb014 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -180,8 +180,8 @@ PLUGIN_HEADER #define VIEWER_SCREEN_RIGHT BUTTON_RIGHT #define VIEWER_MENU BUTTON_SELECT #define VIEWER_AUTOSCROLL BUTTON_REC -#define VIEWER_LINE_UP BUTTON_SCROLL_FWD -#define VIEWER_LINE_DOWN BUTTON_SCROLL_BACK +#define VIEWER_LINE_UP BUTTON_SCROLL_BACK +#define VIEWER_LINE_DOWN BUTTON_SCROLL_FWD /* Sansa C200 keys */ #elif CONFIG_KEYPAD == SANSA_C200_PAD |