mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: wrong width for commit graph
This commit is contained in:
parent
a690f77468
commit
6a0cf30db2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue