diff options
-rw-r--r-- | src/plugins/vcsbase/vcsbaseeditor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/vcsbase/vcsbaseeditor.cpp b/src/plugins/vcsbase/vcsbaseeditor.cpp index 1459cc5093..de7cdc3ad7 100644 --- a/src/plugins/vcsbase/vcsbaseeditor.cpp +++ b/src/plugins/vcsbase/vcsbaseeditor.cpp @@ -796,8 +796,7 @@ DiffChunk VCSBaseEditorWidget::diffChunk(QTextCursor cursor) const DiffChunk rc; // Search back for start of chunk. QTextBlock block = cursor.block(); - QTextBlock next = block.next(); - if (next.isValid() && TextEditor::BaseTextDocumentLayout::foldingIndent(next) <= 1) + if (block.isValid() && TextEditor::BaseTextDocumentLayout::foldingIndent(block) <= 1) /* We are in a diff header, not in a chunk! DiffHighlighter sets the foldingIndent for us. */ return rc; |