diff --git a/ui/app/GioView.java b/ui/app/GioView.java index f4f1900b..f7c7a154 100644 --- a/ui/app/GioView.java +++ b/ui/app/GioView.java @@ -184,7 +184,9 @@ public class GioView extends SurfaceView implements Choreographer.FrameCallback private final Editable editable; InputConnection(View view) { - super(view, true); + // Passing false enables "dummy mode", where the BaseInputConnection + // attempts to convert IME operations to key events. + super(view, false); editable = Editable.Factory.getInstance().newEditable(""); }