Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
applied Peters wintoclient/wintomon optimisation in enternotify()
[dwm.git]
/
dwm.c
diff --git
a/dwm.c
b/dwm.c
index
a0ab126
..
01e8d1f
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-827,13
+827,14
@@
enternotify(XEvent *e) {
if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
return;
c = wintoclient(ev->window);
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;
}
unfocus(selmon->sel, True);
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