Fix style of visualized whitespace for various vcs editors

Blame, log and git rebase editors.

Task-number: QTCREATORBUG-17735
Change-Id: Ifd23ba7b6ccf3ef98d3026cdc8c17fd88c97797c
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Eike Ziller
2017-05-08 10:52:28 +02:00
parent 1a9808d393
commit b289dbde3c
3 changed files with 19 additions and 17 deletions

View File

@@ -111,7 +111,7 @@ void BaseAnnotationHighlighter::highlightBlock(const QString &text)
const QString change = changeNumber(text);
const ChangeNumberFormatMap::const_iterator it = d->m_changeNumberMap.constFind(change);
if (it != d->m_changeNumberMap.constEnd())
setFormat(0, text.length(), it.value());
setFormatWithSpaces(text, 0, text.length(), it.value());
}
void BaseAnnotationHighlighter::setFontSettings(const TextEditor::FontSettings &fontSettings)