diff options
| author | Jules Aguillon | 2026-01-18 21:57:17 +0100 |
|---|---|---|
| committer | GitHub | 2026-01-18 21:57:17 +0100 |
| commit | c669a755a69c68203f11684366dfbb4732b154da (patch) | |
| tree | dab0afc83d1a44459eff949826fbdb8495bd13ba /srcs/juloo.keyboard2/prefs | |
| parent | 3b4aa33ff3744c5de77dc90c0962e7540f1e2afc (diff) | |
| download | unexpected-keyboard-c669a755a69c68203f11684366dfbb4732b154da.tar.gz unexpected-keyboard-c669a755a69c68203f11684366dfbb4732b154da.zip | |
Add the small capital letters dead key (#1156)
* Add the small capital letters dead key
It can be added to the keyboard from the settings or into custom layouts
as `accent_small_caps`.
Add all the symbols listed on https://en.wikipedia.org/wiki/Small_caps
Diffstat (limited to 'srcs/juloo.keyboard2/prefs')
| -rw-r--r-- | srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java b/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java index a304b2a..2527bb9 100644 --- a/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java +++ b/srcs/juloo.keyboard2/prefs/ExtraKeysPreference.java @@ -45,6 +45,7 @@ public class ExtraKeysPreference extends PreferenceCategory "accent_hook_above", "accent_horn", "accent_double_grave", + "accent_small_caps", "€", "ß", "£", @@ -223,6 +224,7 @@ public class ExtraKeysPreference extends PreferenceCategory case "accent_hook_above": case "accent_horn": case "accent_double_grave": + case "accent_small_caps": id = R.string.key_descr_dead_key; break; |
