┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2008-03-15 17:13:59 +0000
committerPeter Penz <[email protected]>2008-03-15 17:13:59 +0000
commitec9b516e3a9f0d2dcecb580b354d58453335c32e (patch)
treef291b7a610e71d17669d71d0b50a19a8a87c71c1 /src
parent4b48006164c20d54dd335b72d037b614aa87aac7 (diff)
dim image frame only by 12.5 % instead of 25 %
svn path=/trunk/KDE/kdebase/apps/; revision=785957
Diffstat (limited to 'src')
-rw-r--r--src/iconmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iconmanager.cpp b/src/iconmanager.cpp
index ae2b80b99..dcfa9befe 100644
--- a/src/iconmanager.cpp
+++ b/src/iconmanager.cpp
@@ -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();