Skip to content

Commit

Permalink
Fix Alt modifier on Windows Auto-Type
Browse files Browse the repository at this point in the history
* Fixes #10791
  • Loading branch information
droidmonkey committed May 23, 2024
1 parent e7aa092 commit 2a62000
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/osutils/winutils/WinUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ WORD WinUtils::qtToNativeKeyCode(Qt::Key key)
return VK_SHIFT; // 0x10
case Qt::Key_Control:
return VK_CONTROL; // 0x11
case Qt::Key_Alt:
return VK_MENU; // 0x12
case Qt::Key_Pause:
return VK_PAUSE; // 0x13
case Qt::Key_CapsLock:
Expand Down

0 comments on commit 2a62000

Please sign in to comment.