Skip to content

Commit 4219dce

Browse files
authored
Merge pull request #629 from Flow-Launcher/fix_filepath_tooltip
Fix Explorer's file result subtitle tool tip as file path instead
2 parents 5aa7412 + d536b6f commit 4219dce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ internal static Result CreateFolderResult(string title, string subtitle, string
5252
},
5353
Score = score,
5454
TitleToolTip = Constants.ToolTipOpenDirectory,
55-
SubTitleToolTip = Constants.ToolTipOpenDirectory,
55+
SubTitleToolTip = path,
5656
ContextData = new SearchResult
5757
{
5858
Type = ResultType.Folder,
@@ -144,7 +144,7 @@ internal static Result CreateFileResult(string filePath, Query query, int score
144144
return true;
145145
},
146146
TitleToolTip = Constants.ToolTipOpenContainingFolder,
147-
SubTitleToolTip = Constants.ToolTipOpenContainingFolder,
147+
SubTitleToolTip = filePath,
148148
ContextData = new SearchResult
149149
{
150150
Type = ResultType.File,

Plugins/Flow.Launcher.Plugin.Explorer/plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"Name": "Explorer",
1010
"Description": "Search and manage files and folders. Explorer utilises Windows Index Search",
1111
"Author": "Jeremy Wu",
12-
"Version": "1.8.3",
12+
"Version": "1.8.4",
1313
"Language": "csharp",
1414
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
1515
"ExecuteFileName": "Flow.Launcher.Plugin.Explorer.dll",

0 commit comments

Comments
 (0)