summaryrefslogtreecommitdiff
path: root/apps/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/action.c')
-rw-r--r--apps/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/action.c b/apps/action.c
index 5d0f994862..0614443bac 100644
--- a/apps/action.c
+++ b/apps/action.c
@@ -310,7 +310,7 @@ int action_get_touchpad_press(short *x, short *y)
310 return BUTTON_REL; 310 return BUTTON_REL;
311 /* this is to give a BUTTON_REL after a BUTTON_REPEAT */ 311 /* this is to give a BUTTON_REL after a BUTTON_REPEAT */
312 if (last_button & BUTTON_REL) 312 if (last_button & BUTTON_REL)
313 return BUTTON_REL; 313 return BUTTON_REPEAT|BUTTON_REL;
314 return BUTTON_TOUCHPAD; 314 return BUTTON_TOUCHPAD;
315} 315}
316#endif 316#endif