Anselm R Garbe il y a 17 ans
Parent
commit
6229ed20c2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      dwm.c

+ 1 - 1
dwm.c

@@ -1068,7 +1068,7 @@ monocle(void) {
 	Client *c;
 
 	for(c = clients; c; c = c->next)
-		if((lt->isfloating || !c->floating) &&  isvisible(c))
+		if((lt->isfloating || !c->isfloating) &&  isvisible(c))
 			resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
 }