From 4543c1761a98f3feecf1630f5be78974753ee5f5 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 22 Apr 2007 21:29:02 +0000 Subject: [PATCH] when windows reverttoparent, we will get a notifynonlinear when the frame closes --- openbox/event.c | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.39.2