projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1d72938
)
minor fix
author
Anselm R Garbe
<garbeam@gmail.com>
Thu, 2 Jul 2009 13:42:06 +0000
(14:42 +0100)
committer
Anselm R Garbe
<garbeam@gmail.com>
Thu, 2 Jul 2009 13:42:06 +0000
(14:42 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index abdaa6c5254ac7c0e5a92ab44a8ff8bc770893af..32b7fc8787887d1c9250e219e1878b89fe9f68c7 100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1195,7
+1195,7
@@
pointertomon(int x, int y) {
for(m = mons; m; m = m->next)
if(INRECT(x, y, m->wx, m->wy, m->ww, m->wh))
return m;
- return
mons
;
+ return
selmon
;
}
void
@@
-1758,7
+1758,7
@@
updategeom(void) {
/* select focused monitor */
cleanupmons();
- mons = newmons;
+
selmon =
mons = newmons;
selmon = wintomon(root);
}
@@
-1891,7
+1891,7
@@
wintomon(Window w) {
return m;
if((c = wintoclient(w)))
return c->mon;
- return
mons
;
+ return
selmon
;
}
/* There's no way to check accesses to destroyed windows, thus those cases are