Added binding to VK_SNAPSHOT for Key_SysReq on Windows

This commit is contained in:
MOZGIII 2015-09-25 23:21:26 +03:00
parent 37155af6c0
commit 36645a5a74
1 changed files with 2 additions and 0 deletions

View File

@ -98,6 +98,8 @@ quint32 QxtGlobalShortcutPrivate::nativeKeycode(Qt::Key key)
return VK_PAUSE;
case Qt::Key_Print:
return VK_PRINT;
case Qt::Key_SysReq:
return VK_SNAPSHOT; // windows does not have SysRq in API, but it has PrtScr
case Qt::Key_Clear:
return VK_CLEAR;
case Qt::Key_Home: