From 984b3dabdc7fd0e31afb0b52e2a79f359efe6dc6 Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Wed, 4 Mar 2026 18:25:25 +0800 Subject: [PATCH] Fix Explorer plugin Quick Access items missing from general search results (#4294) --- Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs index 9420e3d3a..28ab1d2e2 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs @@ -299,9 +299,6 @@ namespace Flow.Launcher.Plugin.Explorer.Search private List GetQuickAccessResultsFilteredByActionKeyword(Query query, List actions) { - if (!Settings.QuickAccessKeywordEnabled) - return []; - var results = QuickAccess.AccessLinkListMatched(query, Settings.QuickAccessLinks); if (results.Count == 0) return [];