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 203705b commit 3a8162bCopy full SHA for 3a8162b
Flow.Launcher.Infrastructure/Hotkey/HotkeyModel.cs
@@ -154,7 +154,9 @@ public bool Validate()
154
default:
155
if (ModifierKeys == ModifierKeys.None)
156
{
157
- return CharKey >= Key.F1 && CharKey <= Key.F24;
+ return !((CharKey >= Key.A && CharKey <= Key.Z) ||
158
+ (CharKey >= Key.D0 && CharKey <= Key.D9) ||
159
+ (CharKey >= Key.NumPad0 && CharKey <= Key.NumPad9));
160
}
161
else
162
0 commit comments