abouttreesummaryrefslogcommitdiff
diff options
context:
space:
mode:
authorJules Aguillon2021-04-18 00:56:20 +0200
committerJules Aguillon2021-04-18 00:56:20 +0200
commit5ed937a654721dcf532901fc7a3e457daf0d8a8a (patch)
treec0b847cbaeea644e814abc0dcefa87f7764b8fdb
parentf8bce500ff3f870e6eadae591541a1210e458cff (diff)
downloadunexpected-keyboard-5ed937a654721dcf532901fc7a3e457daf0d8a8a.tar.gz
unexpected-keyboard-5ed937a654721dcf532901fc7a3e457daf0d8a8a.zip
Render the emoji key as ":)"
In order to remove the colors in the rendering.
-rw-r--r--srcs/juloo.keyboard2/KeyValue.java2
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);