diff options
author | Bjørn Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-08-21 10:37:15 (GMT) |
---|---|---|
committer | Bjørn Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-08-21 11:51:54 (GMT) |
commit | a23dab51f5f0bce3294cc814efc3db402ea92116 (patch) | |
tree | 16b5d8bed86a9dc7149e1120fd8d1e30445845ab /src | |
parent | 9d639659f2334bb5f3ea9b16b23bcb0127752f64 (diff) | |
download | Qt-a23dab51f5f0bce3294cc814efc3db402ea92116.zip Qt-a23dab51f5f0bce3294cc814efc3db402ea92116.tar.gz Qt-a23dab51f5f0bce3294cc814efc3db402ea92116.tar.bz2 |
Add an alpha to the drop shadow pixmap filter by the default.
Shadows looks much nicer with an alpha, so we should use it by default.
Reviewed-by: Gunnar
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/image/qpixmapfilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/image/qpixmapfilter.cpp b/src/gui/image/qpixmapfilter.cpp index f7de80d..4b08227 100644 --- a/src/gui/image/qpixmapfilter.cpp +++ b/src/gui/image/qpixmapfilter.cpp @@ -852,7 +852,7 @@ public: QPixmapDropShadowFilterPrivate() : offset(8, 8), radius(1), - color(63, 63, 63, 255) { + color(63, 63, 63, 180) { } QPointF offset; |