From c2b3b0483f56c19e3aa12929eb949402bdae6233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sun, 7 Nov 2010 12:28:18 +0000 Subject: [PATCH] Don't dim dashboard windows in multiscreen setups svn path=/trunk/KDE/kdebase/workspace/; revision=1193866 --- effects/dashboard/dashboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effects/dashboard/dashboard.cpp b/effects/dashboard/dashboard.cpp index 4d53187e59..183226ea94 100644 --- a/effects/dashboard/dashboard.cpp +++ b/effects/dashboard/dashboard.cpp @@ -74,7 +74,7 @@ void DashboardEffect::reconfigure( ReconfigureFlags ) void DashboardEffect::paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data ) { - if( transformWindow && ( w != window ) && w->isManaged() ) + if( transformWindow && ( w != window ) && w->isManaged() && !isDashboard( w ) ) { brightnessDelta = (1 - (brightness.toDouble() / 100)); saturationDelta = (1 - (saturation.toDouble() / 100));