fix: commit graph clip bounds

This commit is contained in:
leo
2024-08-28 13:36:09 +08:00
parent 45212ebc28
commit 4bcdd0ade4

View File

@@ -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()