Filter out FocusIn/FocusOut events. Should help #44881.
svn path=/trunk/kdebase/kwin/; revision=230888
This commit is contained in:
parent
ec073ab631
commit
3ea533d147
1 changed files with 1 additions and 2 deletions
|
@ -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 );
|
||||
|
|
Loading…
Reference in a new issue