From 62de49128e10bbfd05e2689a32d4e89a9910c2fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Thu, 6 Feb 2014 03:52:11 +0100 Subject: [PATCH] Don't forget the Blur behind the panel --- src/shell/panelview.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shell/panelview.cpp b/src/shell/panelview.cpp index 460c4520f..5ef71146c 100644 --- a/src/shell/panelview.cpp +++ b/src/shell/panelview.cpp @@ -602,11 +602,12 @@ void PanelView::updateStruts() void PanelView::themeChanged() { qDebug() << "CON themeChanged ... " << m_theme.backgroundContrastEnabled() << " : " << m_theme.backgroundContrast() << m_theme.backgroundIntensity() << m_theme.backgroundSaturation(); + //TODO: how to take the shape from the framesvg? + KWindowEffects::enableBlurBehind(winId(), true); KWindowEffects::enableBackgroundContrast(winId(), m_theme.backgroundContrastEnabled(), m_theme.backgroundContrast(), m_theme.backgroundIntensity(), m_theme.backgroundSaturation()); - //TODO: how to take the shape from the framesvg? } #include "moc_panelview.cpp"