Filter out FocusIn/FocusOut events. Should help #44881.

svn path=/trunk/kdebase/kwin/; revision=230888
icc-effect-5.14.5
Luboš Luňák 2003-06-11 08:48:13 +00:00
parent ec073ab631
commit 3ea533d147
1 changed files with 1 additions and 2 deletions

View File

@ -742,9 +742,8 @@ bool Workspace::workspaceEvent( XEvent * e )
return keyRelease(e->xkey);
break;
case FocusIn:
break;
case FocusOut:
break;
return true; // always eat these, they would tell Qt that KWin is the active app
default:
if ( e->type == Shape::shapeEvent() ) {
c = findClient( ((XShapeEvent *)e)->window );