Skip to content

Commit 9077636

Browse files
committed
Disable hyperlinks. Closes #2831
1 parent 31be1b5 commit 9077636

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

RetailCoder.VBE/UI/Controls/BindableTextEditor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public BindableTextEditor()
2424
TextArea.TextView.LinkTextUnderline = false;
2525
TextArea.TextView.LinkTextForegroundBrush = new SolidColorBrush(Colors.Green);
2626
Options.RequireControlModifierForHyperlinkClick = false;
27-
Options.EnableHyperlinks = true;
27+
//This needs some work if hyperlinks need to open in an external browser.
28+
Options.EnableHyperlinks = false;
2829
Options.EnableEmailHyperlinks = true;
2930
}
3031

0 commit comments

Comments
 (0)