aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/glsleditor/glsleditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/glsleditor/glsleditor.cpp')
-rw-r--r--src/plugins/glsleditor/glsleditor.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/plugins/glsleditor/glsleditor.cpp b/src/plugins/glsleditor/glsleditor.cpp
index b7fac825e0d..3a35ccadf74 100644
--- a/src/plugins/glsleditor/glsleditor.cpp
+++ b/src/plugins/glsleditor/glsleditor.cpp
@@ -53,6 +53,7 @@
#include <extensionsystem/pluginmanager.h>
#include <extensionsystem/pluginspec.h>
+#include <texteditor/fontsettings.h>
#include <texteditor/refactoroverlay.h>
#include <texteditor/textdocument.h>
#include <texteditor/syntaxhighlighter.h>
@@ -236,13 +237,10 @@ void GlslEditorWidget::updateDocumentNow()
CreateRanges createRanges(document(), doc);
createRanges(ast);
- QTextCharFormat errorFormat;
- errorFormat.setUnderlineStyle(QTextCharFormat::SingleUnderline);
- errorFormat.setUnderlineColor(Qt::red);
+ const TextEditor::FontSettings &fontSettings = TextEditor::TextEditorSettings::instance()->fontSettings();
- QTextCharFormat warningFormat;
- warningFormat.setUnderlineStyle(QTextCharFormat::SingleUnderline);
- warningFormat.setUnderlineColor(Qt::darkYellow);
+ QTextCharFormat warningFormat = fontSettings.toTextCharFormat(TextEditor::C_WARNING);
+ QTextCharFormat errorFormat = fontSettings.toTextCharFormat(TextEditor::C_ERROR);
QList<QTextEdit::ExtraSelection> sels;
QSet<int> errors;