Skip to content
Snippets Groups Projects
Commit 37565602 authored by Christian Kamm's avatar Christian Kamm
Browse files

C++ editor: Put the changes for indenting a selection in an edit block.

Reviewed-by: Roberto Raggi
parent e086c67e
No related branches found
No related tags found
No related merge requests found
......@@ -1563,11 +1563,14 @@ void CPPEditor::indent(QTextDocument *doc, const QTextCursor &cursor, QChar type
CppTools::QtStyleCodeFormatter codeFormatter = setupCodeFormatter(ts);
codeFormatter.updateStateUntil(block);
QTextCursor tc = textCursor();
tc.beginEditBlock();
do {
ts.indentLine(block, codeFormatter.indentFor(block));
codeFormatter.updateLineStateChange(block);
block = block.next();
} while (block.isValid() && block != end);
tc.endEditBlock();
} else {
indentBlock(doc, cursor.block(), typedChar);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment