From: Dana Jansens Date: Sat, 5 May 2007 18:28:40 +0000 (+0000) Subject: make focus fallback when it is given to the frame (this happens if you unmap the... X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=97ffe20f7e3f1031df0853ed9488104a66e2852e;p=chaz%2Fopenbox 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) --- 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;