From 6a0cf30db262143b2e04effbd0a8f38c7c937100 Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 19 Sep 2024 15:59:34 +0800 Subject: [PATCH] fix: wrong width for commit graph --- src/Views/Histories.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Histories.axaml.cs b/src/Views/Histories.axaml.cs index 46c73300..2c8014ca 100644 --- a/src/Views/Histories.axaml.cs +++ b/src/Views/Histories.axaml.cs @@ -451,7 +451,7 @@ namespace SourceGit.Views return; // Calculate drawing area. - double width = Bounds.Width - 156 - 96 - histories.AuthorNameColumnWidth.Value; + double width = Bounds.Width - 273 - histories.AuthorNameColumnWidth.Value; double height = Bounds.Height; double startY = list.Scroll?.Offset.Y ?? 0; double endY = startY + height + 28;