mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
only display quick access list when action keyword is used
This commit is contained in:
parent
9fdf220e09
commit
a8d6e8df64
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search
|
|||
|| ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword)
|
||||
|| ActionKeywordMatch(query, Settings.ActionKeyword.FileContentSearchActionKeyword))
|
||||
{
|
||||
if (string.IsNullOrEmpty(query.Search))
|
||||
if (string.IsNullOrEmpty(query.Search) && ActionKeywordMatch(query, Settings.ActionKeyword.QuickAccessActionKeyword))
|
||||
return QuickAccess.AccessLinkListAll(query, Settings.QuickAccessLinks);
|
||||
|
||||
var quickAccessLinks = QuickAccess.AccessLinkListMatched(query, Settings.QuickAccessLinks);
|
||||
|
|
|
|||
Loading…
Reference in a new issue