Skip to content

Commit

Permalink
Do not treat AltGr as the Alt modifier when converting keyDown events
Browse files Browse the repository at this point in the history
  • Loading branch information
magiblot committed Oct 20, 2024
1 parent 08c8af7 commit 5f22e80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/tvterm-core/vtermemu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace vtermemu
static constexpr struct { ushort tv; VTermModifier vt; } modifiers[] =
{
{ kbShift, VTERM_MOD_SHIFT },
{ kbAltShift, VTERM_MOD_ALT },
{ kbLeftAlt, VTERM_MOD_ALT },
{ kbCtrlShift, VTERM_MOD_CTRL },
};

Expand Down

0 comments on commit 5f22e80

Please sign in to comment.