1
0
Fork 0

fixed the composing text not appearing when pressing 1-key to type punctuation in 123 mode in non-numeric fields (it only appeared after scrolling)

This commit is contained in:
sspanak 2024-05-17 11:04:30 +03:00 committed by Dimo Karaivanov
parent 7f2d54bb70
commit 8e7f1c999c

View file

@ -17,6 +17,7 @@ public class Mode123 extends ModePassthrough {
@Override public final boolean is123() { return true; }
@Override public boolean isPassthrough() { return false; }
@Override public int getSequenceLength() { return digitSequence.length(); }
@Override public boolean shouldAcceptPreviousSuggestion(int nextKey) { return true; }
private final ArrayList<ArrayList<String>> KEY_CHARACTERS = new ArrayList<>();