Skip to content

Commit

Permalink
Missed fix for the shell launch for help.
Browse files Browse the repository at this point in the history
  • Loading branch information
philstopford committed Feb 24, 2020
1 parent 92e0a91 commit 7981cc3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Common/Variance/UI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1633,7 +1633,13 @@ void launchHelp(object sender, EventArgs e)
// errorReporter.showMessage_OK(helpPath, "Info");
if (helpAvailable)
{
System.Diagnostics.Process.Start(helpPath);
new Process
{
StartInfo = new ProcessStartInfo(@helpPath)
{
UseShellExecute = true
}
}.Start();
}
}

Expand Down

0 comments on commit 7981cc3

Please sign in to comment.