mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix Windows Indexed Content search not triggering
This commit is contained in:
parent
22bc292aa9
commit
0e555b5224
1 changed files with 2 additions and 1 deletions
|
|
@ -47,7 +47,8 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
|||
if (ActionKeywordMatch(query, Settings.ActionKeyword.SearchActionKeyword)
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.QuickAccessActionKeyword)
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.PathSearchActionKeyword)
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword))
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword)
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.FileContentSearchActionKeyword))
|
||||
{
|
||||
if (string.IsNullOrEmpty(query.Search))
|
||||
return QuickAccess.AccessLinkListAll(query, Settings.QuickAccessLinks);
|
||||
|
|
|
|||
Loading…
Reference in a new issue