We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab8f8a commit b0c8454Copy full SHA for b0c8454
src/Views/CommandLogContentPresenter.cs
@@ -91,8 +91,9 @@ public string PureText
91
VerticalScrollBarVisibility = ScrollBarVisibility.Auto;
92
93
TextArea.TextView.Margin = new Thickness(4, 0);
94
- TextArea.TextView.Options.EnableHyperlinks = false;
95
- TextArea.TextView.Options.EnableEmailHyperlinks = false;
+ TextArea.TextView.Options.EnableHyperlinks = true;
+ TextArea.TextView.Options.EnableEmailHyperlinks = true;
96
+ TextArea.TextView.Options.RequireControlModifierForHyperlinkClick = false;
97
}
98
99
public void OnReceiveCommandLog(string line)
0 commit comments