Fix parenthesis being flipped

This commit is contained in:
Oskari Alaranta 2026-02-23 02:58:48 +02:00
parent 61f8b2fa66
commit 862eaa205a
1 changed files with 2 additions and 2 deletions

View File

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