From 587a3cdb2ba6e378d2bc6f9dae14b293cccde048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sat, 18 Dec 2010 11:06:39 +0000 Subject: [PATCH] Don't animate Dashboard with glide effect BUG: 258522 svn path=/trunk/KDE/kdebase/workspace/; revision=1207507 --- effects/glide/glide.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/effects/glide/glide.cpp b/effects/glide/glide.cpp index 33e3bdc3e5..c3f2466f28 100644 --- a/effects/glide/glide.cpp +++ b/effects/glide/glide.cpp @@ -223,7 +223,8 @@ bool GlideEffect::isGlideWindow( EffectWindow* w ) if ( w->hasDecoration() ) return true; if ( !w->isManaged() || w->isMenu() || w->isNotification() || w->isDesktop() || - w->isDock() || w->isSplash() || w->isTopMenu() || w->isToolbar() ) + w->isDock() || w->isSplash() || w->isTopMenu() || w->isToolbar() || + w->windowClass() == "dashboard dashboard" ) return false; return true; }