diff --git a/src/Views/CommitMessagePresenter.cs b/src/Views/CommitMessagePresenter.cs index f540b272..22386cbf 100644 --- a/src/Views/CommitMessagePresenter.cs +++ b/src/Views/CommitMessagePresenter.cs @@ -106,6 +106,8 @@ namespace SourceGit.Views return; _lastHover = match; + _lastHover.Link.Classes.Add("issue_link_hovered"); + SetCurrentValue(CursorProperty, Cursor.Parse("Hand")); ToolTip.SetTip(this, match.URL); ToolTip.SetIsOpen(this, true); diff --git a/src/Views/Histories.axaml.cs b/src/Views/Histories.axaml.cs index 5ac31695..33ba0c37 100644 --- a/src/Views/Histories.axaml.cs +++ b/src/Views/Histories.axaml.cs @@ -253,6 +253,8 @@ namespace SourceGit.Views return; _lastHover = match; + _lastHover.Link.Classes.Add("issue_link_hovered"); + SetCurrentValue(CursorProperty, Cursor.Parse("Hand")); ToolTip.SetTip(this, match.URL); ToolTip.SetIsOpen(this, true);