fix bug introduced in 2a3bf727be1c8bc185f1b436893b1c4385d982ac

This commit is contained in:
bao-qian
2016-06-23 22:55:38 +01:00
parent d84ac0df9c
commit eb1af1e27e

View File

@@ -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;
}
}