mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix Key.None logic
This commit is contained in:
parent
343cdf2ad4
commit
d227a0a158
1 changed files with 2 additions and 1 deletions
|
|
@ -155,6 +155,7 @@ namespace Flow.Launcher.Infrastructure.Hotkey
|
|||
case Key.RightShift:
|
||||
case Key.LWin:
|
||||
case Key.RWin:
|
||||
case Key.None:
|
||||
return false;
|
||||
default:
|
||||
if (validateKeyGestrue)
|
||||
|
|
@ -174,7 +175,7 @@ namespace Flow.Launcher.Infrastructure.Hotkey
|
|||
}
|
||||
else
|
||||
{
|
||||
return CharKey != Key.None;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue