1
0
Fork 0

fixed typing emojis not possible right after typing a space in Japanese

This commit is contained in:
sspanak 2025-05-16 12:36:08 +03:00 committed by Dimo Karaivanov
parent fcf9e575dc
commit b62055dd93

View file

@ -47,7 +47,7 @@ public class ModeKanji extends ModePinyin {
}
String nextSequence = digitSequence + (char)(nextKey + '0');
if (nextSequence.endsWith(seq.CHARS_1_SEQUENCE) && !predictions.noDbWords()) {
if (seq.isAnySpecialCharSequence(nextSequence)) {
return false;
}