diff options
| author | Edgars | 2022-01-22 09:22:25 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2022-01-22 21:13:46 +0100 |
| commit | 3ab22280652e55d3a0b23b4e01301d854d4f6e40 (patch) | |
| tree | cece06ec8473714f24849f33d79a634ede2d7a1f | |
| parent | eda171d57a53ac2445f87fc81a4ab5097ae326b6 (diff) | |
| download | unexpected-keyboard-3ab22280652e55d3a0b23b4e01301d854d4f6e40.tar.gz unexpected-keyboard-3ab22280652e55d3a0b23b4e01301d854d4f6e40.zip | |
Use symbols for configuration and emoji keys
`srcs/juloo.keyboard2/KeyValue.java` was updated to replace `Conf` with
`⛭` (`\u2699`) and `:)` with `☻` (`\u263B`).
| -rw-r--r-- | srcs/juloo.keyboard2/KeyValue.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srcs/juloo.keyboard2/KeyValue.java b/srcs/juloo.keyboard2/KeyValue.java index bf8c1d2..64c059f 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -214,10 +214,10 @@ class KeyValue addCharKey(')', KeyEvent.KEYCODE_NUMPAD_RIGHT_PAREN); addCharKey('ß', EVENT_NONE, FLAG_LANG_SZLIG); - addSpecialKey("config", "Conf", EVENT_CONFIG); + addSpecialKey("config", "⛭", EVENT_CONFIG); addSpecialKey("switch_text", "ABC", EVENT_SWITCH_TEXT); addSpecialKey("switch_numeric", "123+", EVENT_SWITCH_NUMERIC); - addSpecialKey("switch_emoji", ":)", EVENT_SWITCH_EMOJI); + addSpecialKey("switch_emoji", "☻", EVENT_SWITCH_EMOJI); addSpecialKey("switch_back_emoji", "ABC", EVENT_SWITCH_BACK_EMOJI); addSpecialKey("change_method", "⊞", EVENT_CHANGE_METHOD); addSpecialKey("action", "Action", EVENT_ACTION); // Will always be replaced |
