mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
Corrected misspelled local variable nextHigh(t)light
This commit is contained in:
parent
6e69c0567a
commit
6026fd8d5c
1 changed files with 4 additions and 4 deletions
|
@ -279,7 +279,7 @@ namespace SourceGit.Views
|
|||
var highlightBG = info.Type == Models.TextDiffLineType.Added ? _presenter.AddedHighlightBrush : _presenter.DeletedHighlightBrush;
|
||||
var processingIdxStart = 0;
|
||||
var processingIdxEnd = 0;
|
||||
var nextHightlight = 0;
|
||||
var nextHighlight = 0;
|
||||
|
||||
foreach (var tl in line.TextLines)
|
||||
{
|
||||
|
@ -288,9 +288,9 @@ namespace SourceGit.Views
|
|||
var y = line.GetTextLineVisualYPosition(tl, VisualYPosition.LineTop) - textView.VerticalOffset;
|
||||
var h = line.GetTextLineVisualYPosition(tl, VisualYPosition.LineBottom) - textView.VerticalOffset - y;
|
||||
|
||||
while (nextHightlight < info.Highlights.Count)
|
||||
while (nextHighlight < info.Highlights.Count)
|
||||
{
|
||||
var highlight = info.Highlights[nextHightlight];
|
||||
var highlight = info.Highlights[nextHighlight];
|
||||
if (highlight.Start >= processingIdxEnd)
|
||||
break;
|
||||
|
||||
|
@ -305,7 +305,7 @@ namespace SourceGit.Views
|
|||
if (highlight.End >= processingIdxEnd)
|
||||
break;
|
||||
|
||||
nextHightlight++;
|
||||
nextHighlight++;
|
||||
}
|
||||
|
||||
processingIdxStart = processingIdxEnd;
|
||||
|
|
Loading…
Reference in a new issue