diff options
| author | Jules Aguillon | 2022-06-06 00:55:16 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2022-06-06 00:55:16 +0200 |
| commit | 4d104eacf319060d4c78b9f9328b050de909eb93 (patch) | |
| tree | 87858a874c1ac1245c6d2dedfb29c3cc202e7617 /srcs | |
| parent | 31d6a70dfb9c7ad3a72302bca2339f926e4593ee (diff) | |
| download | unexpected-keyboard-4d104eacf319060d4c78b9f9328b050de909eb93.tar.gz unexpected-keyboard-4d104eacf319060d4c78b9f9328b050de909eb93.zip | |
Remove the option "Show every accents"
This option cannot be implemented easily now that the set of "accents"
(localized keys) isn't defined.
Diffstat (limited to 'srcs')
| -rw-r--r-- | srcs/juloo.keyboard2/Keyboard2.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srcs/juloo.keyboard2/Keyboard2.java b/srcs/juloo.keyboard2/Keyboard2.java index 77fc0bf..f57d7fe 100644 --- a/srcs/juloo.keyboard2/Keyboard2.java +++ b/srcs/juloo.keyboard2/Keyboard2.java @@ -96,7 +96,8 @@ public class Keyboard2 extends InputMethodService List<InputMethodSubtype> enabled_subtypes = getEnabledSubtypes(imm); switch (_config.accents) { - case 1: + // '3' was "all accents", now unused + case 1: case 3: extra_keys_of_subtype(extra_keys, subtype); for (InputMethodSubtype s : enabled_subtypes) extra_keys_of_subtype(extra_keys, s); @@ -104,7 +105,6 @@ public class Keyboard2 extends InputMethodService case 2: extra_keys_of_subtype(extra_keys, subtype); break; - case 3: extra_keys = null; break; case 4: break; default: throw new IllegalArgumentException(); } |
