From e303008e666c129caf886ea27ab840e2cc2322c5 Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 5 Mar 2022 20:21:37 +0100 Subject: [PATCH] Fix action key not updating when switching field The keyboard was updated before the action key is. --- srcs/juloo.keyboard2/Keyboard2.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcs/juloo.keyboard2/Keyboard2.java b/srcs/juloo.keyboard2/Keyboard2.java index 44b36a1..2db63e6 100644 --- a/srcs/juloo.keyboard2/Keyboard2.java +++ b/srcs/juloo.keyboard2/Keyboard2.java @@ -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); }