minor fix
Anselm R Garbe garbeam@gmail.com
Thu, 02 Jul 2009 14:42:06 +0100
1 files changed,
3 insertions(+),
3 deletions(-)
jump to
M
dwm.c
→
dwm.c
@@ -1195,7 +1195,7 @@
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 @@ }
/* select focused monitor */ cleanupmons(); - mons = newmons; + selmon = mons = newmons; selmon = wintomon(root); }@@ -1891,7 +1891,7 @@ if(w == m->barwin)
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