From 90b7559d32fb08a96af6931831d84b2f79d43c77 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Tue, 30 Jun 2020 07:53:46 +1000 Subject: [PATCH] show ToolTip directory path on current folder result --- Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs index dacc57c22..bfde8c2c7 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs @@ -87,8 +87,8 @@ namespace Flow.Launcher.Plugin.Explorer.Search FilesFolders.OpenPath(retrievedDirectoryPath); return true; }, - TitleToolTip = Constants.ToolTipOpenDirectory, - SubTitleToolTip = Constants.ToolTipOpenDirectory, + TitleToolTip = retrievedDirectoryPath, + SubTitleToolTip = retrievedDirectoryPath, ContextData = new SearchResult { Type = ResultType.Folder, FullPath = retrievedDirectoryPath, ShowIndexState = true, WindowsIndexed = windowsIndexed } }; }