We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfcd44f commit 9ca474aCopy full SHA for 9ca474a
1 file changed
ICSharpCode.AvalonEdit/Rendering/VisualLineLinkText.cs
@@ -106,7 +106,7 @@ protected internal override void OnMouseDown(MouseButtonEventArgs e)
106
}
107
if (!args.Handled) {
108
try {
109
- Process.Start(this.NavigateUri.ToString());
+ Process.Start(new ProcessStartInfo { FileName = this.NavigateUri.ToString(), UseShellExecute = true });
110
} catch {
111
// ignore all kinds of errors during web browser start
112
0 commit comments