mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
gloablHotkey -> GlobalHotkey
This commit is contained in:
@@ -41,7 +41,7 @@ namespace Wox
|
||||
Key key = (e.Key == Key.System ? e.SystemKey : e.Key);
|
||||
|
||||
string text = string.Empty;
|
||||
SpecialKeyState specialKeyState = new GloablHotkey().CheckModifiers();
|
||||
SpecialKeyState specialKeyState = new GlobalHotkey().CheckModifiers();
|
||||
if (specialKeyState.AltPressed)
|
||||
{
|
||||
text += "Alt";
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace Wox
|
||||
public static bool initialized = false;
|
||||
|
||||
private static readonly List<Result> waitShowResultList = new List<Result>();
|
||||
private readonly GloablHotkey globalHotkey = new GloablHotkey();
|
||||
private readonly GlobalHotkey globalHotkey = new GlobalHotkey();
|
||||
private readonly KeyboardSimulator keyboardSimulator = new KeyboardSimulator(new InputSimulator());
|
||||
private readonly Storyboard progressBarStoryboard = new Storyboard();
|
||||
private bool WinRStroked;
|
||||
@@ -349,7 +349,7 @@ namespace Wox
|
||||
{
|
||||
bool hideWindow = result.Action(new ActionContext()
|
||||
{
|
||||
SpecialKeyState = new GloablHotkey().CheckModifiers()
|
||||
SpecialKeyState = new GlobalHotkey().CheckModifiers()
|
||||
});
|
||||
if (hideWindow)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user