From 790036d5f82c0cb1af94d0dd65c4d9d5471c850a Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Thu, 21 Feb 2013 16:22:42 +0100 Subject: [PATCH] blur behind panels --- src/shell/panelview.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/shell/panelview.cpp b/src/shell/panelview.cpp index 01d0503eb..125a20494 100644 --- a/src/shell/panelview.cpp +++ b/src/shell/panelview.cpp @@ -20,6 +20,8 @@ #include +#include + #include PanelView::PanelView(Plasma::Corona *corona, QWindow *parent) @@ -31,6 +33,9 @@ PanelView::PanelView(Plasma::Corona *corona, QWindow *parent) setClearBeforeRendering(true); setColor(QColor(Qt::transparent)); setFlags(Qt::FramelessWindowHint); + + //TODO: how to take the shape from the framesvg? + KWindowEffects::enableBlurBehind(winId(), true); } PanelView::~PanelView()