Skip to content

Commit 9ca474a

Browse files
committed
bugfix hyperlinks in netcore - fixes #191
1 parent dfcd44f commit 9ca474a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ICSharpCode.AvalonEdit/Rendering/VisualLineLinkText.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected internal override void OnMouseDown(MouseButtonEventArgs e)
106106
}
107107
if (!args.Handled) {
108108
try {
109-
Process.Start(this.NavigateUri.ToString());
109+
Process.Start(new ProcessStartInfo { FileName = this.NavigateUri.ToString(), UseShellExecute = true });
110110
} catch {
111111
// ignore all kinds of errors during web browser start
112112
}

0 commit comments

Comments
 (0)