mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
trigger general search only when action keywords match
This commit is contained in:
parent
d74a635f46
commit
9fdf220e09
1 changed files with 4 additions and 1 deletions
|
|
@ -87,7 +87,10 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
|||
|
||||
break;
|
||||
|
||||
case false:
|
||||
case false
|
||||
when ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword)
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.SearchActionKeyword):
|
||||
|
||||
searchResults = Settings.IndexProvider.SearchAsync(query.Search, token);
|
||||
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue