enhance: do NOT redraw commit graph if vertical scroll of commit list not changed

This commit is contained in:
leo 2024-08-28 13:19:44 +08:00
parent ce2340456e
commit ddcab64940
No known key found for this signature in database

View file

@ -647,8 +647,13 @@ namespace SourceGit.Views
private void OnCommitListLayoutUpdated(object _1, EventArgs _2)
{
var y = CommitListContainer.Scroll?.Offset.Y ?? 0;
if (y != _lastScrollY)
{
_lastScrollY = y;
CommitGraph.InvalidateVisual();
}
}
private void OnCommitListSelectionChanged(object _, SelectionChangedEventArgs e)
{
@ -695,5 +700,7 @@ namespace SourceGit.Views
e.Handled = true;
}
}
private double _lastScrollY = 0;
}
}