mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08: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;
|
return;
|
||||||
|
|
||||||
// Calculate drawing area.
|
// 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 height = Bounds.Height;
|
||||||
double startY = list.Scroll?.Offset.Y ?? 0;
|
double startY = list.Scroll?.Offset.Y ?? 0;
|
||||||
double endY = startY + height + 28;
|
double endY = startY + height + 28;
|
||||||
|
|
Loading…
Reference in a new issue