From 4bcdd0ade4d337660fd75ac473c4717bf361ffc7 Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 28 Aug 2024 13:36:09 +0800 Subject: [PATCH] fix: commit graph clip bounds --- src/Views/Histories.axaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Views/Histories.axaml.cs b/src/Views/Histories.axaml.cs index c1540a6f..f8da37b2 100644 --- a/src/Views/Histories.axaml.cs +++ b/src/Views/Histories.axaml.cs @@ -637,6 +637,11 @@ namespace SourceGit.Views if (list != null && list.SelectedItems.Count == 1) list.ScrollIntoView(list.SelectedIndex); }); + + AuthorNameColumnWidthProperty.Changed.AddClassHandler((h, _) => + { + h.CommitGraph.InvalidateVisual(); + }); } public Histories()