mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
allow path to be searchable in quick access list
This commit is contained in:
parent
a8d6e8df64
commit
5ac2366697
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks
|
|||
|
||||
var queriedAccessLinks =
|
||||
accessLinks
|
||||
.Where(x => x.Name.Contains(search, StringComparison.OrdinalIgnoreCase))
|
||||
.Where(x => x.Name.Contains(search, StringComparison.OrdinalIgnoreCase) || x.Path.Contains(search, StringComparison.OrdinalIgnoreCase))
|
||||
.OrderBy(x => x.Type)
|
||||
.ThenBy(x => x.Name);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue