applied Peters wintoclient/wintomon optimisation in enternotify()
This commit is contained in:
parent
b3c5f5435a
commit
3150a8a1be
7
dwm.c
7
dwm.c
@ -827,13 +827,14 @@ enternotify(XEvent *e) {
|
|||||||
if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
|
if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
|
||||||
return;
|
return;
|
||||||
c = wintoclient(ev->window);
|
c = wintoclient(ev->window);
|
||||||
if((m = wintomon(ev->window)) && m != selmon) {
|
m = c ? c->mon : wintomon(ev->window);
|
||||||
|
if(m != selmon) {
|
||||||
unfocus(selmon->sel, True);
|
unfocus(selmon->sel, True);
|
||||||
selmon = m;
|
selmon = m;
|
||||||
}
|
}
|
||||||
else if(c == selmon->sel || c == NULL)
|
else if(!c || c == selmon->sel)
|
||||||
return;
|
return;
|
||||||
focus((wintoclient(ev->window)));
|
focus(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user