mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-23 10:22:13 +08:00
enhance: do NOT redraw commit graph if vertical scroll of commit list not changed
This commit is contained in:
@@ -647,7 +647,12 @@ namespace SourceGit.Views
|
||||
|
||||
private void OnCommitListLayoutUpdated(object _1, EventArgs _2)
|
||||
{
|
||||
CommitGraph.InvalidateVisual();
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user