summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-05 08:57:26 -0400
committerarg@10ksloc.org <unknown>2006-08-05 08:57:26 -0400
commitf4208e7cacd56de70d50218a0b5ace83e39b76a6 (patch)
treee1194fb9fb0aac7ab33da4fe247251dae31988cc
parentusing -Os again, zoom is ignored in floating mode or on floating clients (diff)
downloaddwm-f4208e7cacd56de70d50218a0b5ace83e39b76a6.tar.gz
dwm-f4208e7cacd56de70d50218a0b5ace83e39b76a6.tar.bz2
dwm-f4208e7cacd56de70d50218a0b5ace83e39b76a6.zip
small fix of the last commit
Diffstat (limited to '')
-rw-r--r--client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c
index 589b73e..6531410 100644
--- a/client.c
+++ b/client.c
@@ -466,7 +466,7 @@ zoom(Arg *arg)
{
Client *c;
- if(!sel || arrange != dotile)
+ if(!sel || (arrange != dotile) || sel->isfloat)
return;
if(sel == getnext(clients) && sel->next) {