am 08476dc1: Merge "Don\'t send empty composing texts."
* commit '08476dc1076cec7758786141bb86b3a5c46e4e35': Don't send empty composing texts.main
commit
8e38607e5c
|
@ -936,7 +936,11 @@ public final class InputLogic {
|
||||||
} else {
|
} else {
|
||||||
mWordComposer.processEvent(inputTransaction.mEvent);
|
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();
|
inputTransaction.setRequiresUpdateSuggestions();
|
||||||
} else {
|
} else {
|
||||||
if (mLastComposedWord.canRevertCommit()) {
|
if (mLastComposedWord.canRevertCommit()) {
|
||||||
|
|
Loading…
Reference in New Issue