mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
fix: commit graph clip bounds
This commit is contained in:
parent
45212ebc28
commit
4bcdd0ade4
1 changed files with 5 additions and 0 deletions
|
@ -637,6 +637,11 @@ namespace SourceGit.Views
|
|||
if (list != null && list.SelectedItems.Count == 1)
|
||||
list.ScrollIntoView(list.SelectedIndex);
|
||||
});
|
||||
|
||||
AuthorNameColumnWidthProperty.Changed.AddClassHandler<Histories>((h, _) =>
|
||||
{
|
||||
h.CommitGraph.InvalidateVisual();
|
||||
});
|
||||
}
|
||||
|
||||
public Histories()
|
||||
|
|
Loading…
Reference in a new issue