From 7981cc3a27cfa048bd9e6b4991ab16107744e2a8 Mon Sep 17 00:00:00 2001 From: philstopford Date: Mon, 24 Feb 2020 15:02:52 -0600 Subject: [PATCH] Missed fix for the shell launch for help. --- Common/Variance/UI/MainForm.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Common/Variance/UI/MainForm.cs b/Common/Variance/UI/MainForm.cs index da2c7d8..40e3b18 100644 --- a/Common/Variance/UI/MainForm.cs +++ b/Common/Variance/UI/MainForm.cs @@ -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(); } }