diff --git a/mRemoteV1/UI/Window/AboutWindow.Designer.cs b/mRemoteV1/UI/Window/AboutWindow.Designer.cs index 5cfb51750..a1c9910f3 100644 --- a/mRemoteV1/UI/Window/AboutWindow.Designer.cs +++ b/mRemoteV1/UI/Window/AboutWindow.Designer.cs @@ -132,6 +132,7 @@ this.gwbCredits.Size = new System.Drawing.Size(552, 464); this.gwbCredits.TabIndex = 12; this.gwbCredits.UseHttpActivityObserver = false; + this.gwbCredits.DomClick += new System.EventHandler(this.LinkClicked); // // gwbChangeLog // @@ -143,6 +144,7 @@ this.gwbChangeLog.Size = new System.Drawing.Size(553, 464); this.gwbChangeLog.TabIndex = 13; this.gwbChangeLog.UseHttpActivityObserver = false; + this.gwbChangeLog.DomClick += new System.EventHandler(this.LinkClicked); // // tlpTop // diff --git a/mRemoteV1/UI/Window/AboutWindow.cs b/mRemoteV1/UI/Window/AboutWindow.cs index 595389f6c..05f8633dc 100644 --- a/mRemoteV1/UI/Window/AboutWindow.cs +++ b/mRemoteV1/UI/Window/AboutWindow.cs @@ -1,4 +1,5 @@ using System; +using System.Diagnostics; using System.Drawing; using System.IO; using System.Text; @@ -161,5 +162,11 @@ namespace mRemoteNG.UI.Window #endif #endregion + + private void LinkClicked(object sender, DomMouseEventArgs e) + { + Process.Start(((GeckoWebBrowser)sender).StatusText); + e.Handled = true; + } } } \ No newline at end of file