Skip to content

Commit

Permalink
Disable hyperlinks. Closes #2831
Browse files Browse the repository at this point in the history
  • Loading branch information
comintern committed Mar 10, 2017
1 parent 31be1b5 commit 9077636
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RetailCoder.VBE/UI/Controls/BindableTextEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public BindableTextEditor()
TextArea.TextView.LinkTextUnderline = false;
TextArea.TextView.LinkTextForegroundBrush = new SolidColorBrush(Colors.Green);
Options.RequireControlModifierForHyperlinkClick = false;
Options.EnableHyperlinks = true;
//This needs some work if hyperlinks need to open in an external browser.
Options.EnableHyperlinks = false;
Options.EnableEmailHyperlinks = true;
}

Expand Down

0 comments on commit 9077636

Please sign in to comment.