diff options
| author | Anselm R Garbe <[email protected]> | 2008-04-05 18:23:31 +0100 |
|---|---|---|
| committer | Anselm R Garbe <[email protected]> | 2008-04-05 18:23:31 +0100 |
| commit | 940240e5e6f16b292b2f6f37a05282617ce10fe9 (patch) | |
| tree | c4ecac3eb30f98152981d5f8bdf3348f5a6ecb16 | |
| parent | next version is 5.0 (diff) | |
| download | seiwm-940240e5e6f16b292b2f6f37a05282617ce10fe9.tar.xz seiwm-940240e5e6f16b292b2f6f37a05282617ce10fe9.zip | |
applied the proposed monocle patch from the mailinglist
| -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(isvisible(c)) + if((lt->isfloating || !c->floating) && isvisible(c)) resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS); } |