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:
|
||||
return XK_onehalf;
|
||||
case Key::OpenParenthesis:
|
||||
return ')';
|
||||
case Key::CloseParenthesis:
|
||||
return '(';
|
||||
case Key::CloseParenthesis:
|
||||
return ')';
|
||||
case Key::OpenSquareBracket:
|
||||
return '[';
|
||||
case Key::CloseSquareBracket:
|
||||
|
|
|
|||
Loading…
Reference in New Issue