diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-22 11:29:59 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-22 11:29:59 +0200 |
commit | 8439369db9e340bf260efb1c29282ccb5d224194 (patch) | |
tree | 7057a65a0b151b7a75e558291a1fad8566006422 /layout.c | |
parent | 81658eaab3a0e1532543ab08a415cab3a044c0dd (diff) | |
download | dwm-8439369db9e340bf260efb1c29282ccb5d224194.tar.gz |
applied Szabolcs proposal for zoom() as well
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layout.c b/layout.c index 47e9e49..abdf30f 100644 --- a/layout.c +++ b/layout.c @@ -247,7 +247,7 @@ void zoom(const char *arg) { Client *c; - if(!sel || lt->arrange != tile || sel->isfloating) + if(!sel || lt->arrange == floating || sel->isfloating) return; if((c = sel) == nexttiled(clients)) if(!(c = nexttiled(c->next))) |