don't tint button outlines quite so much on hover

svn path=/trunk/KDE/kdebase/workspace/; revision=753969
icc-effect-5.14.5
Matthew Woehlke 2007-12-28 20:50:48 +00:00
parent 751f106782
commit dae9b3df18
1 changed files with 2 additions and 2 deletions

View File

@ -201,8 +201,8 @@ void PlastikButton::drawButton(QPainter *painter)
}
if (alpha > 0.0) {
contourTop = KColorUtils::mix(contourTop, highlightColor, alpha);
contourBottom = KColorUtils::mix(contourBottom, highlightColor, alpha);
contourTop = KColorUtils::mix(contourTop, highlightColor, alpha*0.4);
contourBottom = KColorUtils::mix(contourBottom, highlightColor, alpha*0.4);
surfaceTop = KColorUtils::mix(surfaceTop, highlightColor, alpha);
surfaceBottom = KColorUtils::mix(surfaceBottom, highlightColor, alpha);
}