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 dbe626d commit be72bb7Copy full SHA for be72bb7
Flow.Launcher.Infrastructure/Hotkey/GlobalHotkey.cs
@@ -52,7 +52,8 @@ public static SpecialKeyState CheckModifiers()
52
//ALT is pressed
53
state.AltPressed = true;
54
}
55
- if ((PInvoke.GetKeyState((int)VIRTUAL_KEY.VK_LWIN) & 0x8000) != 0)
+ if ((PInvoke.GetKeyState((int)VIRTUAL_KEY.VK_LWIN) & 0x8000) != 0 ||
56
+ (PInvoke.GetKeyState((int)VIRTUAL_KEY.VK_RWIN) & 0x8000) != 0)
57
{
58
//WIN is pressed
59
state.WinPressed = true;
0 commit comments