Fix parenthesis being flipped
This commit is contained in:
parent
61f8b2fa66
commit
862eaa205a
|
|
@ -159,9 +159,9 @@ static constexpr uint32_t my_key_to_x_keysym(LibInput::Key key)
|
||||||
case Key::Half:
|
case Key::Half:
|
||||||
return XK_onehalf;
|
return XK_onehalf;
|
||||||
case Key::OpenParenthesis:
|
case Key::OpenParenthesis:
|
||||||
return ')';
|
|
||||||
case Key::CloseParenthesis:
|
|
||||||
return '(';
|
return '(';
|
||||||
|
case Key::CloseParenthesis:
|
||||||
|
return ')';
|
||||||
case Key::OpenSquareBracket:
|
case Key::OpenSquareBracket:
|
||||||
return '[';
|
return '[';
|
||||||
case Key::CloseSquareBracket:
|
case Key::CloseSquareBracket:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue