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
fbb07cf75f
commit
d0dc9ac1fe
1 changed files with 4 additions and 4 deletions
|
@ -268,7 +268,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)
|
||||
{
|
||||
|
@ -277,9 +277,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;
|
||||
|
||||
|
@ -294,7 +294,7 @@ namespace SourceGit.Views
|
|||
if (highlight.End >= processingIdxEnd)
|
||||
break;
|
||||
|
||||
nextHightlight++;
|
||||
nextHighlight++;
|
||||
}
|
||||
|
||||
processingIdxStart = processingIdxEnd;
|
||||
|
|
Loading…
Reference in a new issue