From a358cdad3dc50e6a5941021ca56ac322dd8b4bed Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 1 Nov 2020 16:02:34 -0600 Subject: [PATCH] Improve behavior of 2 finger scrolling in trackpad mode --- Limelight/Input/RelativeTouchHandler.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/Input/RelativeTouchHandler.m b/Limelight/Input/RelativeTouchHandler.m index 7ac4ab8..a07870f 100644 --- a/Limelight/Input/RelativeTouchHandler.m +++ b/Limelight/Input/RelativeTouchHandler.m @@ -98,7 +98,7 @@ static const int REFERENCE_HEIGHT = 720; CGPoint avgLocation = CGPointMake((firstLocation.x + secondLocation.x) / 2, (firstLocation.y + secondLocation.y) / 2); if (touchLocation.y != avgLocation.y) { - LiSendScrollEvent(avgLocation.y - touchLocation.y); + LiSendHighResScrollEvent(avgLocation.y - touchLocation.y); } // If we've moved far enough to confirm this wasn't just human/machine error,