summaryrefslogtreecommitdiff
path: root/ui/qt/syntax_line_edit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/syntax_line_edit.cpp')
-rw-r--r--ui/qt/syntax_line_edit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/syntax_line_edit.cpp b/ui/qt/syntax_line_edit.cpp
index 483bdcb7ce..867c01d38a 100644
--- a/ui/qt/syntax_line_edit.cpp
+++ b/ui/qt/syntax_line_edit.cpp
@@ -59,9 +59,9 @@ void SyntaxLineEdit::setSyntaxState(SyntaxState state) {
.arg(Invalid)
.arg(Deprecated)
.arg("palette(text)") // Foreground
- .arg(ColorUtils::fromColorT(&prefs.gui_text_valid).name()) // Invalid
- .arg(ColorUtils::fromColorT(&prefs.gui_text_invalid).name()) // Deprecated
- .arg(ColorUtils::fromColorT(&prefs.gui_text_deprecated).name()) // Valid
+ .arg(ColorUtils::fromColorT(&prefs.gui_text_valid).name()) // Valid
+ .arg(ColorUtils::fromColorT(&prefs.gui_text_invalid).name()) // Invalid
+ .arg(ColorUtils::fromColorT(&prefs.gui_text_deprecated).name()) // VDeprecated
;
setStyleSheet(style_sheet_);
}