dim image frame only by 12.5 % instead of 25 %

svn path=/trunk/KDE/kdebase/apps/; revision=785957
This commit is contained in:
Peter Penz 2008-03-15 17:13:59 +00:00
parent 4b48006164
commit ec9b516e3a

View file

@ -285,8 +285,8 @@ bool IconManager::applyImageFrame(QPixmap& icon)
painter.drawRect(0, 0, width, height);
painter.drawRect(1, 1, width - 2, height - 2);
// dimm image frame by 25 %
painter.setPen(QColor(0, 0, 0, 64));
// dim image frame by 12.5 %
painter.setPen(QColor(0, 0, 0, 32));
painter.drawRect(frame, frame, width - doubleFrame, height - doubleFrame);
painter.end();