diff --git a/effects/dashboard/dashboard.cpp b/effects/dashboard/dashboard.cpp index a69c899579..4d53187e59 100644 --- a/effects/dashboard/dashboard.cpp +++ b/effects/dashboard/dashboard.cpp @@ -84,6 +84,19 @@ void DashboardEffect::paintWindow( EffectWindow* w, int mask, QRegion region, Wi data.saturation *= (1 - (saturationDelta * timeline.value())); } + else if( transformWindow && ( w == window ) && w->isManaged() ) + { + // transform dashboard + if ((timeline.value() * 2) <= 1) + { + data.opacity *= timeline.value() * 2; + } + else + { + data.opacity *= 1; + } + } + effects->paintWindow( w, mask, region, data ); }