Commit 940240e

Anselm R Garbe <garbeam@gmail.com>
2008-04-05 13:23:31
applied the proposed monocle patch from the mailinglist
1 parent 08c596e
Changed files (1)
dwm.c
@@ -1068,7 +1068,7 @@ monocle(void) {
 	Client *c;
 
 	for(c = clients; c; c = c->next)
-		if(isvisible(c))
+		if((lt->isfloating || !c->floating) &&  isvisible(c))
 			resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
 }