ClementGre / ThreeFingerDragOnWindows

Enables macOS-style three-finger dragging functionality on Windows Precision touchpads.
https://apps.microsoft.com/detail/9MSX91WQCM2V?
MIT License
602 stars 40 forks source link

Issue when using 4 fingers to change desktops #11

Closed AhmedDawoud3 closed 1 year ago

AhmedDawoud3 commented 2 years ago

when dragging with 4 fingers to change the desktop, the app reads it as 3 fingers and taps on the screen.

ClementGre commented 2 years ago

That's an important issue, I'll work on it when developing the next version !

ClementGre commented 1 year ago

This happens because you never places the four fingers at the same time on the touchpad. Then, a three fingers input is send before you places the fourth finger.

I add a threshold of 100ms, then, the three fingers will not be detected, unless you take a lot of time to add the fourth finger.

Thank you !