Fix Alt modifier on Windows Auto-Type

* Fixes #10791
This commit is contained in:
Jonathan White 2024-05-22 19:14:07 -04:00
parent 6e362ee637
commit 1125a02d1e
No known key found for this signature in database
GPG Key ID: 440FC65F2E0C6E01

View File

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