diff options
| author | Jules Aguillon | 2024-07-21 23:37:07 +0200 |
|---|---|---|
| committer | GitHub | 2024-07-21 23:37:07 +0200 |
| commit | 2696f42144f42b1c4c270555047d40095693d3c4 (patch) | |
| tree | c72d45eaeb3f517c3450ba134b26d08f5022bb3d /srcs/juloo.keyboard2/KeyValue.java | |
| parent | 84e10e047012f55d6c2ba2a2c53da93cc9ac00e4 (diff) | |
| download | unexpected-keyboard-2696f42144f42b1c4c270555047d40095693d3c4.tar.gz unexpected-keyboard-2696f42144f42b1c4c270555047d40095693d3c4.zip | |
Allow extending the compose key (#713)
This allows adding more compose sequences without modifying
en_US_UTF_8_Compose.pre.
This is done by grouping sequences files that should be merged together
into a directory. This also allows moving keysymdef.h into that
directory.
Diffstat (limited to 'srcs/juloo.keyboard2/KeyValue.java')
| -rw-r--r-- | srcs/juloo.keyboard2/KeyValue.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index 52b5094..876d5f5 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -570,7 +570,7 @@ public final class KeyValue implements Comparable<KeyValue> case "autofill": return editingKey("auto", Editing.AUTOFILL); /* The compose key */ - case "compose": return makeComposePending(0xE016, ComposeKeyData.en_US_UTF_8_Compose, FLAG_SECONDARY | FLAG_SMALLER_FONT | FLAG_SPECIAL); + case "compose": return makeComposePending(0xE016, ComposeKeyData.compose, FLAG_SECONDARY | FLAG_SMALLER_FONT | FLAG_SPECIAL); /* Placeholder keys */ case "removed": return placeholderKey(Placeholder.REMOVED); |
