From 6b1d34e4a908a8e2d34bd228c2509bdfebfb02ec Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 1 Nov 2020 20:50:25 -0600 Subject: [PATCH] StreamView must be multi-touch enabled for gestures to work --- Limelight/Input/StreamView.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Limelight/Input/StreamView.m b/Limelight/Input/StreamView.m index becf9dc..651fef5 100644 --- a/Limelight/Input/StreamView.m +++ b/Limelight/Input/StreamView.m @@ -631,4 +631,8 @@ static const double X1_MOUSE_SPEED_DIVISOR = 2.5; LiSendScrollEvent(deltaZ); } +- (BOOL)isMultipleTouchEnabled { + return YES; +} + @end