From: Dana Jansens Date: Sun, 22 Apr 2007 21:29:02 +0000 (+0000) Subject: when windows reverttoparent, we will get a notifynonlinear when the frame closes X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=4543c1761a98f3feecf1630f5be78974753ee5f5;p=chaz%2Fopenbox when windows reverttoparent, we will get a notifynonlinear when the frame closes --- diff --git a/openbox/event.c b/openbox/event.c index b020321a..5bb0e2a0 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -372,6 +372,9 @@ static gboolean wanted_focusevent(XEvent *e) /* This means focus moved from one client to another */ if (detail == NotifyNonlinearVirtual) return TRUE; + /* This means focus had moved to our frame window and now moved off */ + if (detail == NotifyNonlinear) + return TRUE; /* Otherwise.. */ return FALSE;