mirror of git://git.suckless.org/dwm
unfocus on slow sloppy monitor focus
This commit is contained in:
parent
51336aa4a3
commit
54c3044dec
1
dwm.c
1
dwm.c
|
@ -1212,6 +1212,7 @@ motionnotify(XEvent *e) {
|
||||||
if(ev->window != root)
|
if(ev->window != root)
|
||||||
return;
|
return;
|
||||||
if((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
|
if((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
|
||||||
|
unfocus(selmon->sel, True);
|
||||||
selmon = m;
|
selmon = m;
|
||||||
focus(NULL);
|
focus(NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue