all repos — openbox @ 53a259f60d932eb963ff0105e77084bab40f2459

openbox fork - make it a bit more like ryudo

focus fallback when focus is on PointerRoot
Dana Jansens danakj@orodu.net
commit

53a259f60d932eb963ff0105e77084bab40f2459

parent

ce2643f55bafecd84bb2fd6d6e72537f2921545c

1 files changed, 6 insertions(+), 1 deletions(-)

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

@@ -364,7 +364,12 @@ gint r;

/* is focus anywhere valid? */ XGetInputFocus(ob_display, &w, &r); - if (!w || w == RootWindow(ob_display, ob_screen)) + +#ifdef DEBUG_FOCUS + ob_debug("Focus was found on 0x%x revert %d\n", w, r); +#endif + + if (!w || w == PointerRoot) focus_fallback(OB_FOCUS_FALLBACK_NOFOCUS); } last = focus_client;