diff options
| author | Jules Aguillon | 2022-06-05 20:15:11 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2022-06-05 20:15:11 +0200 |
| commit | 7462955507325bf8f9037a45aec17c15b5f8b9e7 (patch) | |
| tree | 94a78170d34ec84b8e7baa14748f2ed7133c089a /srcs | |
| parent | 9aac7900c0858eb44b81c4ed1dd80f3cb44b85bb (diff) | |
| download | unexpected-keyboard-7462955507325bf8f9037a45aec17c15b5f8b9e7.tar.gz unexpected-keyboard-7462955507325bf8f9037a45aec17c15b5f8b9e7.zip | |
Fix "REMOVED" key appearing when typing Fn and Shift
Since cc571ea
Diffstat (limited to 'srcs')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyValue.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index 3db6222..f91e22d 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -306,6 +306,8 @@ final class KeyValue addCharKey("\\t", "\\t", '\t', 0); // Send the tab character addCharKey("space", "\r", ' ', FLAG_KEY_FONT); addCharKey("nbsp", "\u237d", '\u00a0', FLAG_KEY_FONT | FLAG_SMALLER_FONT); + + addKey("removed", "", KIND_STRING, 0, 0); // Dummy key used in [KeyModifier] } // Substitute for [assert], which has no effect on Android. |
