From e5f84879f615c93906380de502311abaacb42231 Mon Sep 17 00:00:00 2001 From: Lucas Murray Date: Wed, 23 Dec 2009 02:04:25 +0000 Subject: [PATCH] Show inactive tab windows in flip switch. svn path=/trunk/KDE/kdebase/workspace/; revision=1065326 --- effects/flipswitch/flipswitch.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/effects/flipswitch/flipswitch.cpp b/effects/flipswitch/flipswitch.cpp index 9e8b6018ac..07ffe899f1 100644 --- a/effects/flipswitch/flipswitch.cpp +++ b/effects/flipswitch/flipswitch.cpp @@ -501,6 +501,8 @@ void FlipSwitchEffect::prePaintWindow( EffectWindow* w, WindowPrePaintData& data w->enablePainting( EffectWindow::PAINT_DISABLED_BY_DESKTOP ); if( w->isMinimized() ) w->enablePainting( EffectWindow::PAINT_DISABLED_BY_MINIMIZE ); + if( !w->visibleInClientGroup() ) + w->enablePainting( EffectWindow::PAINT_DISABLED_BY_CLIENT_GROUP ); } else {