applied Peters wintoclient/wintomon optimisation in enternotify()
garbeam@gmail.com unknown
Sun, 10 Jul 2011 21:22:22 +0100
1 files changed,
4 insertions(+),
3 deletions(-)
jump to
M
dwm.c
→
dwm.c
@@ -827,13 +827,14 @@
if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root) return; 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); selmon = m; } - else if(c == selmon->sel || c == NULL) + else if(!c || c == selmon->sel) return; - focus((wintoclient(ev->window))); + focus(c); } void