diff options
author | Anders Bakken <anders.bakken@nokia.com> | 2010-01-15 20:50:18 (GMT) |
---|---|---|
committer | Jørgen Lind <jorgen.lind@nokia.com> | 2010-01-21 06:40:09 (GMT) |
commit | f7a9d99a39a2d2f2936ca2fa2802721d4b56ed00 (patch) | |
tree | 3a455ecde39e2fa68d19734b5b525b30d8fff8e9 | |
parent | 185388c0bf0f258d070376a2a3e50b9e89e1a249 (diff) | |
download | Qt-f7a9d99a39a2d2f2936ca2fa2802721d4b56ed00.zip Qt-f7a9d99a39a2d2f2936ca2fa2802721d4b56ed00.tar.gz Qt-f7a9d99a39a2d2f2936ca2fa2802721d4b56ed00.tar.bz2 |
Fix semitransparent windows with DirectFB
This filling of the window surface is a bug.
Reviewed-by: Jervey Kong <jervey.kong@nokia.com>
-rw-r--r-- | src/plugins/gfxdrivers/directfb/qdirectfbwindowsurface.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/plugins/gfxdrivers/directfb/qdirectfbwindowsurface.cpp b/src/plugins/gfxdrivers/directfb/qdirectfbwindowsurface.cpp index cb9c921..6764e75 100644 --- a/src/plugins/gfxdrivers/directfb/qdirectfbwindowsurface.cpp +++ b/src/plugins/gfxdrivers/directfb/qdirectfbwindowsurface.cpp @@ -378,9 +378,6 @@ void QDirectFBWindowSurface::flush(QWidget *widget, const QRegion ®ion, return; } screen->flipSurface(dfbSurface, flipFlags, region, offset); - if (noSystemBackground) { - dfbSurface->Clear(dfbSurface, 0, 0, 0, 0); - } #else setOpaque(windowOpacity != 0xff); if (mode == Offscreen) { |