diff options
| author | Raphael | 2022-03-24 02:13:01 -0400 |
|---|---|---|
| committer | Jules Aguillon | 2022-04-02 17:36:10 +0200 |
| commit | b995da9985af74d3f4d2945e2114cd198b08ce06 (patch) | |
| tree | a3eae6915615c3fa6efd4f565ca605b728af7acc /srcs/juloo.keyboard2/KeyValue.java | |
| parent | 5f47beb5b0decf92b7804726d93b6eb53e2ca816 (diff) | |
| download | unexpected-keyboard-b995da9985af74d3f4d2945e2114cd198b08ce06.tar.gz unexpected-keyboard-b995da9985af74d3f4d2945e2114cd198b08ce06.zip | |
Update Space Glyph
Revert to previous version, the original google material icon,
which is not rounded, and it looks better with the rest of the keyboard,
also more correct to represent the open box unicode space char,
instead of a smile
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 2b632e5..a8a8197 100644 --- a/srcs/juloo.keyboard2/KeyValue.java +++ b/srcs/juloo.keyboard2/KeyValue.java @@ -269,7 +269,7 @@ class KeyValue addEventKey("tab", "\u000F", KeyEvent.KEYCODE_TAB, FLAG_KEY_FONT | FLAG_SMALLER_FONT); addKey("\\t", "\\t", '\t', EVENT_NONE, 0); // Send the tab character - addKey("space", "\r", ' ', KeyEvent.KEYCODE_SPACE, FLAG_KEY_FONT | FLAG_SMALLER_FONT); + addKey("space", "\r", ' ', KeyEvent.KEYCODE_SPACE, FLAG_KEY_FONT); addKey("nbsp", "\u237d", '\u00a0', EVENT_NONE, FLAG_KEY_FONT | FLAG_SMALLER_FONT); } } |
