mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix VIRTUAL_KEY.VK_RWIN check issue
This commit is contained in:
parent
dbe626d238
commit
be72bb73aa
1 changed files with 2 additions and 1 deletions
|
|
@ -52,7 +52,8 @@ namespace Flow.Launcher.Infrastructure.Hotkey
|
|||
//ALT is pressed
|
||||
state.AltPressed = true;
|
||||
}
|
||||
if ((PInvoke.GetKeyState((int)VIRTUAL_KEY.VK_LWIN) & 0x8000) != 0)
|
||||
if ((PInvoke.GetKeyState((int)VIRTUAL_KEY.VK_LWIN) & 0x8000) != 0 ||
|
||||
(PInvoke.GetKeyState((int)VIRTUAL_KEY.VK_RWIN) & 0x8000) != 0)
|
||||
{
|
||||
//WIN is pressed
|
||||
state.WinPressed = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue