all repos — openbox @ f694c650c83a7c29324debf3ac35d5e0c3abd84e

openbox fork - make it a bit more like ryudo

dont count focusin on the support window to be a focusin on a client
Dana Jansens danakj@orodu.net
commit

f694c650c83a7c29324debf3ac35d5e0c3abd84e

parent

41da12cc5ee1fa03361943dc1ab3e9efcebd29f6

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

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

@@ -363,7 +363,8 @@ }

static Bool look_for_focusin_client(Display *d, XEvent *e, XPointer arg) { - return e->type == FocusIn && wanted_focusevent(e, TRUE); + return e->type == FocusIn && wanted_focusevent(e, TRUE) && + e->xfocus.window != screen_support_win; } static void print_focusevent(XEvent *e)