summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-10-21 21:57:59 +0200
committerwm4 <wm4@nowhere>2015-10-21 21:57:59 +0200
commit14bb3d06a2accbdb402d1972f7e9975fc850cf0e (patch)
tree561c98c5b1fff4c5e21f20e85a4c64cf23be2516
parent1a1ac76d2a4273a55f41d1f4e0da01980e811d9a (diff)
downloadmpv-14bb3d06a2accbdb402d1972f7e9975fc850cf0e.tar.bz2
mpv-14bb3d06a2accbdb402d1972f7e9975fc850cf0e.tar.xz
input: add key name for U+3000 IDEOGRAPHIC SPACE
Deserves its own name, because just like SPACE it's a printable character, but invisible. Fixes #2349... I think.
-rw-r--r--input/keycodes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/input/keycodes.c b/input/keycodes.c
index 514bb22ff2..42f567f979 100644
--- a/input/keycodes.c
+++ b/input/keycodes.c
@@ -36,6 +36,7 @@ struct key_name {
static const struct key_name key_names[] = {
{ ' ', "SPACE" },
{ '#', "SHARP" },
+ { 0x3000, "HALF_SPACE" },
{ MP_KEY_ENTER, "ENTER" },
{ MP_KEY_TAB, "TAB" },
{ MP_KEY_BACKSPACE, "BS" },