Fix action key not updating when switching field

The keyboard was updated before the action key is.
This commit is contained in:
Jules Aguillon 2022-03-05 20:21:37 +01:00
parent 5404e7432d
commit e303008e66

View File

@ -176,7 +176,6 @@ public class Keyboard2 extends InputMethodService
_keyboardView = (Keyboard2View)inflate_view(R.layout.keyboard);
_emojiPane = null;
}
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
}
@Override
@ -186,6 +185,8 @@ public class Keyboard2 extends InputMethodService
refreshEditorInfo(info);
if ((info.inputType & InputType.TYPE_CLASS_NUMBER) != 0)
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
else
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
setInputView(_keyboardView);
}