mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
#129 fix space issues in searching programs
This commit is contained in:
parent
b4bb98b230
commit
9805ab8761
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ namespace Wox.Plugin.SystemPlugins.Program
|
|||
|
||||
protected override List<Result> QueryInternal(Query query)
|
||||
{
|
||||
if (query.RawQuery.EndsWith(" ") || query.RawQuery.Length <= 1) return new List<Result>();
|
||||
if (query.RawQuery.Length <= 1) return new List<Result>();
|
||||
|
||||
var fuzzyMather = FuzzyMatcher.Create(query.RawQuery);
|
||||
List<Program> returnList = installedList.Where(o => MatchProgram(o, fuzzyMather)).ToList();
|
||||
|
|
|
|||
Loading…
Reference in a new issue