tminor fix - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 16e1ef5d400a501780fc676de01ed4ea7638e7a9
(DIR) parent 1d729384d12d289951504b130b8804ab85c0b12b
(HTM) Author: Anselm R Garbe <garbeam@gmail.com>
Date: Thu, 2 Jul 2009 14:42:06 +0100
minor fix
Diffstat:
M dwm.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
(DIR) diff --git a/dwm.c b/dwm.c
t@@ -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
t@@ -1758,7 +1758,7 @@ updategeom(void) {
/* select focused monitor */
cleanupmons();
- mons = newmons;
+ selmon = mons = newmons;
selmon = wintomon(root);
}
t@@ -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