We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6f95e commit 9092c96Copy full SHA for 9092c96
src/main.c
@@ -135,7 +135,9 @@ bool isMod3(KBDLLHOOKSTRUCT keyInfo)
135
136
bool isMod4(KBDLLHOOKSTRUCT keyInfo)
137
{
138
- return keyInfo.vkCode == VK_RMENU || keyInfo.vkCode == VK_CAPITAL; //keyInfo.scanCode == 43 || keyInfo.scanCode == 86;
+ return keyInfo.vkCode == VK_RMENU
139
+ || keyInfo.vkCode == VK_OEM_102 // |<> -Key
140
+ ;
141
}
142
143
void logKeyEvent(char *desc, KBDLLHOOKSTRUCT keyInfo)
0 commit comments