forked from AkkomaGang/akkoma-fe
Check whether we swiped only for mouse pointer
This commit is contained in:
parent
6980e4ddf1
commit
a485ebc2bb
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue