From 51e76636f1db773ba053a6e2d5ad567e87cd0334 Mon Sep 17 00:00:00 2001 From: kovben2004 Date: Thu, 26 Dec 2024 14:49:52 +0100 Subject: [PATCH] Change green to red --- qt/highlighter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/highlighter.cpp b/qt/highlighter.cpp index c7d311f9..ecc9e84f 100644 --- a/qt/highlighter.cpp +++ b/qt/highlighter.cpp @@ -83,7 +83,7 @@ Highlighter::Highlighter(QTextDocument *parent) rule.format = singleLineCommentFormat; highlightingRules.append(rule); - greekFormat.setForeground(Qt::green); + greekFormat.setForeground(Qt::red); rule.pattern = QRegularExpression(QStringLiteral("'.*'")); rule.format = greekFormat; highlightingRules.append(rule);