Don't send empty composing texts.
Bug: 13160467 Change-Id: I5e3204ac8aaa18fe9219cc6b564b832ab6cf94fc
This commit is contained in:
parent
61ddac28de
commit
309ab664a8
1 changed files with 5 additions and 1 deletions
|
@ -936,7 +936,11 @@ public final class InputLogic {
|
|||
} else {
|
||||
mWordComposer.processEvent(inputTransaction.mEvent);
|
||||
}
|
||||
mConnection.setComposingText(getTextWithUnderline(mWordComposer.getTypedWord()), 1);
|
||||
if (mWordComposer.isComposingWord()) {
|
||||
mConnection.setComposingText(getTextWithUnderline(mWordComposer.getTypedWord()), 1);
|
||||
} else {
|
||||
mConnection.commitText("", 1);
|
||||
}
|
||||
inputTransaction.setRequiresUpdateSuggestions();
|
||||
} else {
|
||||
if (mLastComposedWord.canRevertCommit()) {
|
||||
|
|
Loading…
Reference in a new issue