From 97ffe20f7e3f1031df0853ed9488104a66e2852e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 5 May 2007 18:28:40 +0000 Subject: [PATCH] make focus fallback when it is given to the frame (this happens if you unmap the client but not the frame for eg in iconify animation) --- openbox/event.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openbox/event.c b/openbox/event.c index faa1a264..5d5f319f 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -309,6 +309,9 @@ static gboolean wanted_focusevent(XEvent *e) /* This means focus moved from one client to another */ if (detail == NotifyNonlinearVirtual) return TRUE; + /* This means focus moved to the frame window */ + if (detail == NotifyInferior) + return TRUE; /* Otherwise.. */ return FALSE; -- 2.44.0