fix, one tap results double tap event

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2023-10-02 10:15:20 +08:00
parent 92213f9228
commit 863c8de28e
2 changed files with 5 additions and 4 deletions

View File

@@ -112,7 +112,9 @@ class _RawTouchGestureDetectorRegionState
if (lastDeviceKind != PointerDeviceKind.touch) {
return;
}
inputModel.tap(MouseButtons.left);
if (!handleTouch) {
inputModel.tap(MouseButtons.left);
}
}
onDoubleTapDown(TapDownDetails d) {