diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-04-05 19:04:53 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-04-05 19:04:53 +0100 |
commit | 6229ed20c2af107305eccb8b536afd8620443647 (patch) | |
tree | 8eb065f2e18836e2d693cdf12fc1e662fb5881a3 /dwm.c | |
parent | 940240e5e6f16b292b2f6f37a05282617ce10fe9 (diff) | |
download | dwm-6229ed20c2af107305eccb8b536afd8620443647.tar dwm-6229ed20c2af107305eccb8b536afd8620443647.tar.gz dwm-6229ed20c2af107305eccb8b536afd8620443647.tar.bz2 |
fix
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |