From 4d0d98ba123ff12607d8c065a27a1edc7a764c19 Mon Sep 17 00:00:00 2001 From: David Faure Date: Tue, 18 Jul 2000 21:49:09 +0000 Subject: [PATCH] Changed default for sysbg to QColorGroup.base() instead of QColorGroup.background() In e.g. dark blue color theme, this makes "System colors" look much nicer (and consistent with all other KDE apps afaics). Hope this is ok. svn path=/trunk/kdebase/konsole/; revision=57855 --- src/schema.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema.C b/src/schema.C index 77187d80..73b5b0ff 100644 --- a/src/schema.C +++ b/src/schema.C @@ -120,7 +120,7 @@ ColorSchema* ColorSchema::readSchema(const QString & path) if (!(0 <= fi && fi <= TABLE_COLORS)) continue; if (!(0 <= tr && tr <= 1 )) continue; if (!(0 <= bo && bo <= 1 )) continue; - res->table[fi].color = kapp->palette().normal().background(); + res->table[fi].color = kapp->palette().normal().base(); res->table[fi].transparent = tr; res->table[fi].bold = bo; }