Skip to content

Commit b0c8454

Browse files
ux: allow hyperlinks in logs view
This is needed to be able to click on pull request links
1 parent 7ab8f8a commit b0c8454

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Views/CommandLogContentPresenter.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ public string PureText
9191
VerticalScrollBarVisibility = ScrollBarVisibility.Auto;
9292

9393
TextArea.TextView.Margin = new Thickness(4, 0);
94-
TextArea.TextView.Options.EnableHyperlinks = false;
95-
TextArea.TextView.Options.EnableEmailHyperlinks = false;
94+
TextArea.TextView.Options.EnableHyperlinks = true;
95+
TextArea.TextView.Options.EnableEmailHyperlinks = true;
96+
TextArea.TextView.Options.RequireControlModifierForHyperlinkClick = false;
9697
}
9798

9899
public void OnReceiveCommandLog(string line)

0 commit comments

Comments
 (0)