From ff867d22a1edf5d942b49231e9dff575db499092 Mon Sep 17 00:00:00 2001 From: Garulf <535299+Garulf@users.noreply.github.com> Date: Sun, 5 Dec 2021 15:07:32 -0500 Subject: [PATCH] Initial commit Fix misaligned suggestion text --- Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs index 241e82efb..0e68e6815 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs @@ -27,6 +27,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search Title = title, IcoPath = path, SubTitle = subtitle, + AutoCompleteText = $"{subtitle}\\", TitleHighlightData = StringMatcher.FuzzySearch(query.Search, title).MatchData, Action = c => { @@ -123,6 +124,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search Title = Path.GetFileName(filePath), SubTitle = filePath, IcoPath = filePath, + AutoCompleteText = filePath, TitleHighlightData = StringMatcher.FuzzySearch(query.Search, Path.GetFileName(filePath)).MatchData, Score = score, Action = c =>