mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 20:54:59 +00:00
fix<*>: open explore exception on .NET 5.0
This commit is contained in:
parent
24b175c331
commit
1a719a464e
3 changed files with 4 additions and 4 deletions
|
@ -226,7 +226,7 @@ namespace SourceGit.UI {
|
|||
explore.Header = "Reveal in File Explorer";
|
||||
explore.Click += (o, e) => {
|
||||
if (node.IsFile) Process.Start("explorer", $"/select,{path}");
|
||||
else Process.Start(path);
|
||||
else Process.Start("explorer", path);
|
||||
e.Handled = true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue