all repos — openbox @ 97ffe20f7e3f1031df0853ed9488104a66e2852e

openbox fork - make it a bit more like ryudo

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)
Dana Jansens danakj@orodu.net
commit

97ffe20f7e3f1031df0853ed9488104a66e2852e

parent

3409148047e2d179fbe9fc5ef194253cc0f0ad85

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M openbox/event.copenbox/event.c

@@ -309,6 +309,9 @@ return TRUE;

/* 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;