dont count focusin on the support window to be a focusin on a client
This commit is contained in:
parent
41da12cc5e
commit
f694c650c8
1 changed files with 2 additions and 1 deletions
|
@ -363,7 +363,8 @@ static Bool look_for_focusin(Display *d, XEvent *e, XPointer arg)
|
||||||
|
|
||||||
static Bool look_for_focusin_client(Display *d, XEvent *e, XPointer arg)
|
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)
|
static void print_focusevent(XEvent *e)
|
||||||
|
|
Loading…
Reference in a new issue