aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/services/gesture_service/gesture_service.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/services/gesture_service/gesture_service.js b/src/services/gesture_service/gesture_service.js
index 97a26ba7..741d4a12 100644
--- a/src/services/gesture_service/gesture_service.js
+++ b/src/services/gesture_service/gesture_service.js
@@ -190,7 +190,11 @@ class SwipeAndClickGesture {
this.swipeEndCallback(sign)
}
this._reset()
- if (swiped) {
+ // Only a mouse will fire click event when
+ // the end point is far from the starting point
+ // so for other kinds of pointers do not check
+ // whether we have swiped
+ if (swiped && event.pointerType === 'mouse') {
this._preventNextClick = true
}
}