fixed recompsing failing in ABC and 123 modes
This commit is contained in:
parent
dbf943d18a
commit
a7a09c0603
1 changed files with 4 additions and 2 deletions
|
|
@ -135,9 +135,11 @@ public abstract class TypingHandler extends KeyPadHandler {
|
|||
}
|
||||
|
||||
if (settings.getBackspaceRecomposing() && !hold && suggestionOps.isEmpty()) {
|
||||
String previousWord = textField.getWordBeforeCursor();
|
||||
if (textField.recompose(previousWord) && mInputMode.recompose(previousWord)) {
|
||||
final String previousWord = textField.getWordBeforeCursor();
|
||||
if (mInputMode.recompose(previousWord) && textField.recompose(previousWord)) {
|
||||
getSuggestions();
|
||||
} else {
|
||||
mInputMode.reset();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue