diff options
| author | Jules Aguillon | 2021-04-18 00:56:20 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2021-04-18 00:56:20 +0200 |
| commit | 5ed937a654721dcf532901fc7a3e457daf0d8a8a (patch) | |
| tree | c0b847cbaeea644e814abc0dcefa87f7764b8fdb /srcs | |
| parent | f8bce500ff3f870e6eadae591541a1210e458cff (diff) | |
| download | unexpected-keyboard-5ed937a654721dcf532901fc7a3e457daf0d8a8a.tar.gz unexpected-keyboard-5ed937a654721dcf532901fc7a3e457daf0d8a8a.zip | |
Render the emoji key as ":)"
In order to remove the colors in the rendering.
Diffstat (limited to 'srcs')
| -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 06af9ab..5e0162c 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -178,7 +178,7 @@ class KeyValue new KeyValue("config", "Conf", CHAR_NONE, EVENT_CONFIG, FLAG_NOREPEAT); new KeyValue("switch_text", "ABC", CHAR_NONE, EVENT_SWITCH_TEXT, FLAG_NOREPEAT); new KeyValue("switch_numeric", "123+", CHAR_NONE, EVENT_SWITCH_NUMERIC, FLAG_NOREPEAT); - new KeyValue("switch_emoji", "\uD83D\uDE03", CHAR_NONE, EVENT_SWITCH_EMOJI, FLAG_NOREPEAT); + new KeyValue("switch_emoji", ":)", CHAR_NONE, EVENT_SWITCH_EMOJI, FLAG_NOREPEAT); new KeyValue("switch_back_emoji", "ABC", CHAR_NONE, EVENT_SWITCH_BACK_EMOJI, FLAG_NOREPEAT); new KeyValue("esc", "Esc", CHAR_NONE, KeyEvent.KEYCODE_ESCAPE, 0); |
