diff options
| author | Jules Aguillon | 2022-12-14 15:33:44 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2022-12-14 15:33:44 +0100 |
| commit | 8f972113ca6eafb4b12ea9a7f04f4632af9420b9 (patch) | |
| tree | 548a864ef98bf823680a48eacf7ed53d32f53e1a /srcs | |
| parent | c61b31168cf37b171e262f236975f1071dd92000 (diff) | |
| download | unexpected-keyboard-8f972113ca6eafb4b12ea9a7f04f4632af9420b9.tar.gz unexpected-keyboard-8f972113ca6eafb4b12ea9a7f04f4632af9420b9.zip | |
Fix pin entry layout not showing up
The regular text layout was showing instead of the pin entry due to a
misuse of the 'switch' syntax.
Diffstat (limited to 'srcs')
| -rw-r--r-- | srcs/juloo.keyboard2/Keyboard2.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/Keyboard2.java b/srcs/juloo.keyboard2/Keyboard2.java index 1937c60..5851939 100644 --- a/srcs/juloo.keyboard2/Keyboard2.java +++ b/srcs/juloo.keyboard2/Keyboard2.java @@ -226,8 +226,10 @@ public class Keyboard2 extends InputMethodService case InputType.TYPE_CLASS_PHONE: case InputType.TYPE_CLASS_DATETIME: _currentSpecialLayout = KeyboardData.load_pin_entry(getResources()); + break; default: _currentSpecialLayout = null; + break; } } |
