abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/prefs
diff options
context:
space:
mode:
authorJules Aguillon2026-01-18 21:57:17 +0100
committerGitHub2026-01-18 21:57:17 +0100
commitc669a755a69c68203f11684366dfbb4732b154da (patch)
treedab0afc83d1a44459eff949826fbdb8495bd13ba /srcs/juloo.keyboard2/prefs
parent3b4aa33ff3744c5de77dc90c0962e7540f1e2afc (diff)
downloadunexpected-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.java2
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;