From a3852bab8ae8456dc8ef18f71b1b7dffc43b2074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sat, 24 Oct 2020 06:58:37 +0200 Subject: [PATCH] Fix Key::RightBracket not working on POSIX (#222) There was a typo in the mappings, right bracket didn't work. --- src/os/posix/x11.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/posix/x11.rs b/src/os/posix/x11.rs index dbb78a8..462b288 100644 --- a/src/os/posix/x11.rs +++ b/src/os/posix/x11.rs @@ -1117,7 +1117,7 @@ impl Window { XK_bracketleft => Key::LeftBracket, XK_minus => Key::Minus, XK_period => Key::Period, - XK_braceright => Key::RightBracket, + XK_bracketright => Key::RightBracket, XK_semicolon => Key::Semicolon, XK_slash => Key::Slash, XK_space => Key::Space,