about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2009-07-02 14:42:06 +0100
committerAnselm R Garbe <garbeam@gmail.com>2009-07-02 14:42:06 +0100
commit16e1ef5d400a501780fc676de01ed4ea7638e7a9 (patch)
treee368ffc78755a4baf16f9b981c2d66c563d1e74a /dwm.c
parent1d729384d12d289951504b130b8804ab85c0b12b (diff)
downloaddwm-16e1ef5d400a501780fc676de01ed4ea7638e7a9.tar.gz
minor fix
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index abdaa6c..32b7fc8 100644
--- 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