diff options
| author | Jules Aguillon | 2024-06-09 11:10:20 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2024-06-09 11:52:17 +0200 |
| commit | ecac6a77f8954269b76ecbf5c6fa7f5fda65242f (patch) | |
| tree | bb6c7cdf512c03d333b4841a9f9cfcbc9ed7bdbd /srcs/juloo.keyboard2/KeyValue.java | |
| parent | a886f6eedeafbe06c6de0cf68fbd0f81655af597 (diff) | |
| download | unexpected-keyboard-ecac6a77f8954269b76ecbf5c6fa7f5fda65242f.tar.gz unexpected-keyboard-ecac6a77f8954269b76ecbf5c6fa7f5fda65242f.zip | |
compose: Compile several starting states
Sequences from several files are no longer merged but compiled to
separate starting states.
The plan is to use that to represent the diacritics.
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 bb83623..1635bab 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -565,7 +565,7 @@ public final class KeyValue implements Comparable<KeyValue> case "autofill": return editingKey("auto", Editing.AUTOFILL); /* The compose key */ - case "compose": return makeComposePending(0xE016, 0, FLAG_SECONDARY | FLAG_SMALLER_FONT | FLAG_SPECIAL); + case "compose": return makeComposePending(0xE016, ComposeKeyData.en_US_UTF_8_Compose, FLAG_SECONDARY | FLAG_SMALLER_FONT | FLAG_SPECIAL); /* Placeholder keys */ case "removed": return placeholderKey(Placeholder.REMOVED); |
