diff options
Diffstat (limited to 'highlighter.cc')
-rw-r--r-- | highlighter.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/highlighter.cc b/highlighter.cc index 7543b4d..017d6b2 100644 --- a/highlighter.cc +++ b/highlighter.cc @@ -36,6 +36,7 @@ void Highlighter::highlightBlock(const QString &text) QTextCharFormat style; style.setBackground(Qt::red); setFormat(0, text.size(), style); + style.setBackground(Qt::black); style.setForeground(Qt::white); setFormat(parser_error_pos - n, 1, style); } |