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
This commit is contained in:
Andrew Lake 2008-03-25 05:50:13 +00:00
parent eda9e1125d
commit e8772b73d8

View File

@ -165,7 +165,7 @@ class Svg::Private
// Apply current color scheme if the svg asks for it // Apply current color scheme if the svg asks for it
if (applyColors) { if (applyColors) {
QImage itmp = p.toImage(); QImage itmp = p.toImage();
KIconEffect::colorize(itmp, Theme::self()->backgroundColor(), 0.9); KIconEffect::colorize(itmp, Theme::self()->backgroundColor(), 1.0);
p = p.fromImage(itmp); p = p.fromImage(itmp);
} }