We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 343cdf2 commit d227a0aCopy full SHA for d227a0a
Flow.Launcher.Infrastructure/Hotkey/HotkeyModel.cs
@@ -155,6 +155,7 @@ public bool Validate(bool validateKeyGestrue = false)
155
case Key.RightShift:
156
case Key.LWin:
157
case Key.RWin:
158
+ case Key.None:
159
return false;
160
default:
161
if (validateKeyGestrue)
@@ -174,7 +175,7 @@ public bool Validate(bool validateKeyGestrue = false)
174
175
}
176
else
177
{
- return CharKey != Key.None;
178
+ return true;
179
180
181
0 commit comments