mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 13:14:59 +00:00
fix: crash on goto to SHA, NullReferenceException (#741)
This commit is contained in:
parent
4160f8ab9c
commit
bf4080b773
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ namespace SourceGit.Views
|
||||||
open.Icon = App.CreateMenuIcon("Icons.Commit");
|
open.Icon = App.CreateMenuIcon("Icons.Commit");
|
||||||
open.Click += (_, ev) =>
|
open.Click += (_, ev) =>
|
||||||
{
|
{
|
||||||
detail.NavigateTo(_lastHover.Link);
|
detail.NavigateTo(link);
|
||||||
ev.Handled = true;
|
ev.Handled = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue