From: Dana Jansens Date: Thu, 27 Mar 2003 23:39:20 +0000 (+0000) Subject: watch for FocusIn's for unknown clients X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=c3a2684e02b3399d7b65332d001c34225c067eee;p=chaz%2Fopenbox watch for FocusIn's for unknown clients --- diff --git a/openbox/event.c b/openbox/event.c index d1611f9e..1430c3d2 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -245,6 +245,10 @@ void event_process(XEvent *e) if (fi.xfocus.window == e->xfocus.window) return; + /* secret magic way of event_process telling us that no client + was found for the FocusIn event */ + if (fi.xfocus.window == None) + focus_set_client(NULL); } else focus_set_client(NULL); } @@ -270,6 +274,8 @@ void event_process(XEvent *e) event_handle_root(e); else if (e->type == MapRequest) client_manage(window); + else if (e->type == FocusIn) + e->xfocus.window = None; /* says no client was found for the event */ else if (e->type == ConfigureRequest) { /* unhandled configure requests must be used to configure the window directly */