From 885b1271f4f82dfd664f469c5b48d69d1d510f4e Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Fri, 5 Mar 2010 19:04:09 +0000 Subject: [PATCH] WA_NoSystemBackground causes huge graphical glitches combined with the slidingpopups kwin effect svn path=/trunk/KDE/kdelibs/; revision=1099566 --- dialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dialog.cpp b/dialog.cpp index efa37abd4..9cc264f00 100644 --- a/dialog.cpp +++ b/dialog.cpp @@ -311,6 +311,8 @@ Dialog::Dialog(QWidget *parent, Qt::WindowFlags f) d(new DialogPrivate(this)) { setAttribute(Qt::WA_TranslucentBackground); + //WA_NoSystemBackground is going to fail combined with sliding popups + setAttribute(Qt::WA_NoSystemBackground, false); setWindowFlags(Qt::FramelessWindowHint); d->background = new FrameSvg(this); d->background->setImagePath("dialogs/background");