mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
more fixes for getting styleCop up, this will need one more push to get another 15 that will require renaming of vars (#5875)
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Wox.Infrastructure.Hotkey
|
||||
Dictionary<Key, string> specialSymbolDictionary = new Dictionary<Key, string>
|
||||
{
|
||||
{ Key.Space, "Space" },
|
||||
{ Key.Oem3, "~" }
|
||||
{ Key.Oem3, "~" },
|
||||
};
|
||||
|
||||
public ModifierKeys ModifierKeys
|
||||
@@ -81,7 +81,7 @@ namespace Wox.Infrastructure.Hotkey
|
||||
return;
|
||||
}
|
||||
|
||||
List<string> keys = hotkeyString.Replace(" ", "").Split('+').ToList();
|
||||
List<string> keys = hotkeyString.Replace(" ", string.Empty).Split('+').ToList();
|
||||
if (keys.Contains("Alt"))
|
||||
{
|
||||
Alt = true;
|
||||
|
||||
@@ -24,6 +24,6 @@ namespace Wox.Infrastructure.Hotkey
|
||||
/// <summary>
|
||||
/// System key down
|
||||
/// </summary>
|
||||
WM_SYSKEYDOWN = 260
|
||||
WM_SYSKEYDOWN = 260,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user