Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitrij <kvarkas@gmail.com>2021-12-17 13:14:57 +0300
committerGitHub <noreply@github.com>2021-12-17 13:14:57 +0300
commit8fe1bdf39aed63abb00046a29b8e2b5536a1c702 (patch)
tree9111cc40899c5b5a5de7b7e27e02770895bd86b7
parent8a26b2f433421cb4e0caf0b93ef1352f86196c20 (diff)
parentf78bf2bc8a087d4204279d95a2a05f8e6ecca78b (diff)
Merge pull request #2089 from Vest/fix_help_menu
Fixes the exception thrown by menu buttons "Documentation" and "Website"
-rw-r--r--CHANGELOG.md1
-rw-r--r--mRemoteNG/UI/Menu/HelpMenu.cs4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62b8c989..792a8aa5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- #1690: Replaced GeckoFX (Firefox) with CefSharp (Chromium)
- #1325: Language resource files cleanup
### Fixed
+- #2089: Fixed the exception thrown by menu buttons "Documentation" and "Website"
- #2087: Fixed application crash, when the update file is launched from the application
- #2079: Fixed theme files not being copied to output directory
- #1884: Allow setting Port when using MSSQL
diff --git a/mRemoteNG/UI/Menu/HelpMenu.cs b/mRemoteNG/UI/Menu/HelpMenu.cs
index 973047f6..5c78cdeb 100644
--- a/mRemoteNG/UI/Menu/HelpMenu.cs
+++ b/mRemoteNG/UI/Menu/HelpMenu.cs
@@ -142,11 +142,11 @@ namespace mRemoteNG.UI.Menu
private void mMenToolsUpdate_Click(object sender, EventArgs e) => Windows.Show(WindowType.Update);
- private void mMenInfoHelp_Click(object sender, EventArgs e) => Process.Start(GeneralAppInfo.UrlDocumentation);
+ private void mMenInfoHelp_Click(object sender, EventArgs e) => Process.Start("explorer.exe", GeneralAppInfo.UrlDocumentation);
private void mMenInfoForum_Click(object sender, EventArgs e) => Process.Start("explorer.exe", GeneralAppInfo.UrlForum);
- private void mMenInfoWebsite_Click(object sender, EventArgs e) => Process.Start(GeneralAppInfo.UrlHome);
+ private void mMenInfoWebsite_Click(object sender, EventArgs e) => Process.Start("explorer.exe", GeneralAppInfo.UrlHome);
private void mMenInfoDonate_Click(object sender, EventArgs e) => Process.Start("explorer.exe", GeneralAppInfo.UrlDonate);