1
0
mirror of git://git.suckless.org/dwm synced 2025-07-25 17:22:07 -07:00
This commit is contained in:
Anselm R Garbe
2008-04-05 19:04:53 +01:00
parent 940240e5e6
commit 6229ed20c2

2
dwm.c
View File

@@ -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);
}