Skip to content

Commit f88aa01

Browse files
authored
Merge pull request #4 from IvoKrugers/develop
Respect secondaryLabel's value
2 parents e1c1b09 + bb7d1f8 commit f88aa01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VisualStudioMac.OneClickToOpenFile/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public static class Constants
44
{
5-
public const string Version = "17.1";
5+
public const string Version = "17.3.0";
66
public const string OneClickChar
77
#if DEBUG
88
= ">>";

VisualStudioMac.OneClickToOpenFile/NodeBuilderExtensions/OneClickFileNodeBuilderExt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public override void BuildNode(ITreeBuilder treeBuilder, object dataObject, Node
1919
var ext = Path.GetExtension(file.FilePath);
2020
if (Constants.ExcludedExtensionsFromOneClick.FindIndex((s) => s == ext) == -1)
2121
{
22-
nodeInfo.SecondaryLabel = Constants.OneClickChar;
22+
nodeInfo.SecondaryLabel = $"{Constants.OneClickChar} {nodeInfo.SecondaryLabel}";
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)