How to get a short drag to register as a click

I have some thick fingered users who drag their finger a little when tapping on list items on mobile. I can see the click animation but the actual click is ignored.

Is there any way to tune the minimal distance for a click to be recognized as a drag?
Is this even happening in the framework or is it a browser thing?

Thanks!

Hello,
Maybe you can capture the drag event, then verify the drag distance to cancel the drag and emit the click event if the distance is too short…

There is a touch.touchClicksDistanceThreshold app parameter that you can try to increase

1 Like

Just what I was looking for, thanks!