1
0
Fork 0

regression: fixed the first key press after being missed after a restart (again)

This commit is contained in:
sspanak 2024-05-30 10:53:05 +03:00 committed by Dimo Karaivanov
parent b5d58f5720
commit a8ed844d2c

View file

@ -62,7 +62,7 @@ public abstract class TypingHandler extends KeyPadHandler {
// ignore multiple calls for the same field, caused by requestShowSelf() -> showWindow(), // ignore multiple calls for the same field, caused by requestShowSelf() -> showWindow(),
// or weirdly functioning apps, such as the Qin SMS app // or weirdly functioning apps, such as the Qin SMS app
if (restart && languageChanged && mInputMode.getId() == getInputModeId()) { if (restart && !languageChanged && mInputMode.getId() == getInputModeId()) {
return false; return false;
} }