Fix Key::RightBracket not working on POSIX (#222)

There was a typo in the mappings, right bracket didn't work.
This commit is contained in:
Ondřej Hruška 2020-10-24 06:58:37 +02:00 committed by GitHub
parent efbe6a1c71
commit a3852bab8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,