Skip to content

Commit

Permalink
[Feature] Max Path 260 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofknecht committed Aug 6, 2020
1 parent 3e5486a commit de4fb95
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Business/Menus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ private static bool IsActive()

private static void OpenFolder()
{
Log.ProcessStart("explorer.exe", Config.Path, true);
Log.ProcessStart(Config.Path, null, true);
}

private Menu Create(MenuData menuData, string title = null)
Expand Down
2 changes: 1 addition & 1 deletion DataClasses/RowData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ internal void DoubleClick(MouseEventArgs e)
if (ContainsMenu &&
(e == null || e.Button == MouseButtons.Left))
{
Log.ProcessStart("explorer.exe", TargetFilePath, true);
Log.ProcessStart(TargetFilePath, null, true);
}
}

Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.14.3")]
[assembly: AssemblyFileVersion("1.0.14.3")]
[assembly: AssemblyVersion("1.0.14.4")]
[assembly: AssemblyFileVersion("1.0.14.4")]

0 comments on commit de4fb95

Please sign in to comment.