diff options
| author | Jules Aguillon | 2026-05-02 19:32:21 +0200 |
|---|---|---|
| committer | GitHub | 2026-05-02 19:32:21 +0200 |
| commit | 9c23e6c5f3459240a87898762cbfa90cef766ad7 (patch) | |
| tree | 7b632f324e5d14431105ae87ea4e65dbda463d4f /srcs/juloo.keyboard2/Config.java | |
| parent | d164820bca8d2182869108f8a015ce3d987d048d (diff) | |
| download | unexpected-keyboard-9c23e6c5f3459240a87898762cbfa90cef766ad7.tar.gz unexpected-keyboard-9c23e6c5f3459240a87898762cbfa90cef766ad7.zip | |
Emoji suggestion (#1235)
Suggest an emoji in addition to the 3 suggested words when the
current word matches an alias in the emoji dictionary, if
available.
Diffstat (limited to 'srcs/juloo.keyboard2/Config.java')
| -rw-r--r-- | srcs/juloo.keyboard2/Config.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srcs/juloo.keyboard2/Config.java b/srcs/juloo.keyboard2/Config.java index 98bb72b..e4694e8 100644 --- a/srcs/juloo.keyboard2/Config.java +++ b/srcs/juloo.keyboard2/Config.java @@ -84,6 +84,7 @@ public final class Config public Map<KeyValue, KeyboardData.PreferredPos> extra_keys_param; public Map<KeyValue, KeyboardData.PreferredPos> extra_keys_custom; public Cdict current_dictionary = null; // Might be 'null'. + public Cdict emoji_dictionary = null; // Might be 'null'. public IKeyEventHandler handler; public boolean orientation_landscape = false; public boolean foldable_unfolded = false; |
