dont count focusin on the support window to be a focusin on a client
authorDana Jansens <danakj@orodu.net>
Sun, 13 May 2007 05:51:08 +0000 (05:51 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 13 May 2007 05:51:08 +0000 (05:51 +0000)
openbox/event.c

index 699dfdd..ead80a1 100644 (file)
@@ -363,7 +363,8 @@ static Bool look_for_focusin(Display *d, XEvent *e, XPointer arg)
 
 static Bool look_for_focusin_client(Display *d, XEvent *e, XPointer arg)
 {
-    return e->type == FocusIn && wanted_focusevent(e, TRUE);
+    return e->type == FocusIn && wanted_focusevent(e, TRUE) &&
+        e->xfocus.window != screen_support_win;
 }
 
 static void print_focusevent(XEvent *e)