From 472a3e635deeadad50420de46a1119b205faaba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <thorbjorn.lindeijer@nokia.com> Date: Wed, 15 Jul 2009 14:47:40 +0200 Subject: [PATCH] Save the foreground color even if it equals the text color Not all colors inherit the color from the standard text. For example line number colors. --- src/plugins/texteditor/colorscheme.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/texteditor/colorscheme.cpp b/src/plugins/texteditor/colorscheme.cpp index 6aa4116cf69..e937d15f051 100644 --- a/src/plugins/texteditor/colorscheme.cpp +++ b/src/plugins/texteditor/colorscheme.cpp @@ -151,8 +151,7 @@ bool ColorScheme::save(const QString &fileName) const Format &format = i.next().value(); w.writeStartElement(QLatin1String("style")); w.writeAttribute(QLatin1String("name"), i.key()); - if (format.foreground().isValid() && - (i.key() == QLatin1String(Constants::C_TEXT) || format.foreground() != textFormat.foreground())) + if (format.foreground().isValid()) w.writeAttribute(QLatin1String("foreground"), format.foreground().name().toLower()); if (format.background().isValid()) w.writeAttribute(QLatin1String("background"), format.background().name().toLower()); -- GitLab