From 394a57a26dcda8dd026592c79cf4981194b99c92 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 16 Sep 2023 15:59:07 -0500 Subject: [PATCH] Disable native touch passthrough for now --- app/src/main/java/com/limelight/Game.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/limelight/Game.java b/app/src/main/java/com/limelight/Game.java index c132a258..90e5a299 100644 --- a/app/src/main/java/com/limelight/Game.java +++ b/app/src/main/java/com/limelight/Game.java @@ -2009,11 +2009,14 @@ public class Game extends Activity implements SurfaceHolder.Callback, return true; } - if (!prefConfig.touchscreenTrackpad && trySendTouchEvent(view, event)) { + // TODO: Re-enable native touch when have a better solution for handling + // cancelled touches from Android gestures and 3 finger taps to activate + // the software keyboard. + /*if (!prefConfig.touchscreenTrackpad && trySendTouchEvent(view, event)) { // If this host supports touch events and absolute touch is enabled, // send it directly as a touch event. return true; - } + }*/ TouchContext context = getTouchContext(actionIndex); if (context == null) {