From eb1af1e27ed7201930510f935946abd08a533932 Mon Sep 17 00:00:00 2001 From: bao-qian Date: Thu, 23 Jun 2016 22:55:38 +0100 Subject: [PATCH] fix bug introduced in 2a3bf727be1c8bc185f1b436893b1c4385d982ac --- Plugins/Wox.Plugin.Shell/Main.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Plugins/Wox.Plugin.Shell/Main.cs b/Plugins/Wox.Plugin.Shell/Main.cs index ad72b16431..360ba508b9 100644 --- a/Plugins/Wox.Plugin.Shell/Main.cs +++ b/Plugins/Wox.Plugin.Shell/Main.cs @@ -5,6 +5,7 @@ using System.IO; using System.Linq; using System.Windows; using WindowsInput; +using WindowsInput.Native; using Wox.Infrastructure.Hotkey; using Wox.Infrastructure.Logger; using Wox.Infrastructure.Storage; @@ -285,6 +286,7 @@ namespace Wox.Plugin.Shell if (keyevent == (int)KeyEvent.WM_KEYUP && _winRStroked && vkcode == (int)Keys.LWin) { _winRStroked = false; + _keyboardSimulator.ModifiedKeyStroke(VirtualKeyCode.LWIN, VirtualKeyCode.CONTROL); return false; } }