1
0
Fork 0

fixed Backspace not erasing text emoticons properly after '1' has been pressed multiple times (Android 4 and 5 only)

This commit is contained in:
sspanak 2024-12-19 17:20:15 +02:00 committed by Dimo Karaivanov
parent 2cdc1dc04f
commit 30be73df6a

View file

@ -59,6 +59,6 @@ class Emoji extends Punctuation {
}
public static int getMaxEmojiLevel() {
return Emoji.size();
return noEmojiSupported() ? 1 : Emoji.size();
}
}