fix: commit graph clip bounds

This commit is contained in:
leo 2024-08-28 13:36:09 +08:00
parent 45212ebc28
commit 4bcdd0ade4
No known key found for this signature in database

View file

@ -637,6 +637,11 @@ namespace SourceGit.Views
if (list != null && list.SelectedItems.Count == 1) if (list != null && list.SelectedItems.Count == 1)
list.ScrollIntoView(list.SelectedIndex); list.ScrollIntoView(list.SelectedIndex);
}); });
AuthorNameColumnWidthProperty.Changed.AddClassHandler<Histories>((h, _) =>
{
h.CommitGraph.InvalidateVisual();
});
} }
public Histories() public Histories()