From e8772b73d8a8b76b35b8c77dada62cfb2cf12b91 Mon Sep 17 00:00:00 2001 From: Andrew Lake Date: Tue, 25 Mar 2008 05:50:13 +0000 Subject: [PATCH] Change colorize from 0.9 to 1.0. No reason it should have been 0.9 in the first place. Plus it fixes slight differences in intesity levels between system color-aware plasma themes and the currently selected style. It was a very minor change so I just went ahead and committed. I don't anticipate any objections, but if there are please revert with my apologies. CCMAIL: panel-devel@kde.org svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=789757 --- svg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svg.cpp b/svg.cpp index 5e4e0482c..119abc8bb 100644 --- a/svg.cpp +++ b/svg.cpp @@ -165,7 +165,7 @@ class Svg::Private // Apply current color scheme if the svg asks for it if (applyColors) { QImage itmp = p.toImage(); - KIconEffect::colorize(itmp, Theme::self()->backgroundColor(), 0.9); + KIconEffect::colorize(itmp, Theme::self()->backgroundColor(), 1.0); p = p.fromImage(itmp); }