Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28a52285 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Auto finish composing text when A11yIME commits text" into tm-dev am: 54a8dee1

parents 992fee0d 54a8dee1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1065,7 +1065,11 @@ public final class RemoteInputConnectionImpl extends IInputContext.Stub {
                    Log.w(TAG, "commitText on inactive InputConnection");
                    return;
                }
                // A11yIME's commitText() also triggers finishComposingText() automatically.
                ic.beginBatchEdit();
                ic.finishComposingText();
                ic.commitText(text, newCursorPosition, textAttribute);
                ic.endBatchEdit();
            });
        }