From 646c7909d33f2684738272305bba27959ec80275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 26 Feb 2010 16:50:45 +0000 Subject: [PATCH] Do not activate highlight windows in desktop switching. This fixes a crash in walk through desktops. BUG: 223432 svn path=/trunk/KDE/kdebase/workspace/; revision=1096422 --- tabbox/tabboxhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabbox/tabboxhandler.cpp b/tabbox/tabboxhandler.cpp index 0549d19d84..65d2d3c6fb 100644 --- a/tabbox/tabboxhandler.cpp +++ b/tabbox/tabboxhandler.cpp @@ -228,7 +228,7 @@ void TabBoxHandlerPrivate::hideOutline() void TabBoxHandlerPrivate::updateHighlightWindows() { - if( !isShown ) + if( !isShown || config.tabBoxMode() != TabBoxConfig::ClientTabBox ) return; QVector< WId > data( 2 ); Display *dpy = QX11Info::display();