Skip to content

Commit cdf0963

Browse files
authored
Fixed tooltip for the Home and Recycle Bin sidebar items (#3476)
1 parent a36487d commit cdf0963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Files/Filesystem/LocationItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public string Path
1414
set
1515
{
1616
path = value;
17-
HoverDisplayText = Path.Contains("?") ? Text : Path;
17+
HoverDisplayText = Path.Contains("?") || Path.StartsWith("Shell:") || Path == "Home" ? Text : Path;
1818
}
1919
}
2020

0 commit comments

Comments
 (0)