diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-06-01 13:56:34 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-06-01 13:56:34 +0000 |
| commit | 5dca53eeb0e5ee17bfb5ff436655fa991d0786bd (patch) | |
| tree | b2c73e16ae49c854c05651a1120f569db5102906 /apps/action.c | |
| parent | 995b71a51d3cfa37ebf5dd40d83bd6c0aed019d4 (diff) | |
| download | rockbox-5dca53eeb0e5ee17bfb5ff436655fa991d0786bd.zip rockbox-5dca53eeb0e5ee17bfb5ff436655fa991d0786bd.tar.gz rockbox-5dca53eeb0e5ee17bfb5ff436655fa991d0786bd.tar.bz2 rockbox-5dca53eeb0e5ee17bfb5ff436655fa991d0786bd.tar.xz | |
Even more touchscreen improvements.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17673 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.c')
| -rw-r--r-- | apps/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c index 5d0f994..0614443 100644 --- a/apps/action.c +++ b/apps/action.c @@ -310,7 +310,7 @@ int action_get_touchpad_press(short *x, short *y) return BUTTON_REL; /* this is to give a BUTTON_REL after a BUTTON_REPEAT */ if (last_button & BUTTON_REL) - return BUTTON_REL; + return BUTTON_REPEAT|BUTTON_REL; return BUTTON_TOUCHPAD; } #endif |