mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Don't send empty composing texts."
This commit is contained in:
commit
08476dc107
@ -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 New Issue
Block a user