Simulating Win+backspace key press, instead of Win+Control as it was launching WW (#2250)

This commit is contained in:
Alekhya 2020-04-21 19:46:10 -07:00 committed by GitHub
parent 29bbe84f69
commit d48ef90fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -292,7 +292,7 @@ namespace Wox.Plugin.Shell
if (keyevent == (int)KeyEvent.WM_KEYUP && _winRStroked && vkcode == (int)Keys.LWin)
{
_winRStroked = false;
_keyboardSimulator.ModifiedKeyStroke(VirtualKeyCode.LWIN, VirtualKeyCode.CONTROL);
_keyboardSimulator.ModifiedKeyStroke(VirtualKeyCode.LWIN, VirtualKeyCode.BACK);
return false;
}
}