mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
do not exclude if in Quick Access list
This commit is contained in:
parent
b642898132
commit
b2dc2ef71b
1 changed files with 6 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
|
||||
using Flow.Launcher.Plugin.Explorer.Search.DirectoryInfo;
|
||||
using Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks;
|
||||
using Flow.Launcher.Plugin.Explorer.Search.WindowsIndex;
|
||||
using Flow.Launcher.Plugin.SharedCommands;
|
||||
|
|
@ -65,9 +65,12 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
|||
|
||||
if (!querySearch.IsLocationPathString() && !isEnvironmentVariablePath)
|
||||
{
|
||||
results.UnionWith(await WindowsIndexFilesAndFoldersSearchAsync(query, querySearch, token).ConfigureAwait(false));
|
||||
var filteredResults = FilterOutResultsFromWindowsIndexExclusionList(
|
||||
await WindowsIndexFilesAndFoldersSearchAsync(query, querySearch, token).ConfigureAwait(false));
|
||||
|
||||
return FilterOutResultsFromWindowsIndexExclusionList(results).ToList();
|
||||
results.UnionWith(filteredResults);
|
||||
|
||||
return results.ToList();
|
||||
}
|
||||
|
||||
var locationPath = querySearch;
|
||||
|
|
|
|||
Loading…
Reference in a new issue