dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit f4208e7cacd56de70d50218a0b5ace83e39b76a6
parent ecc95c903ba6c9a548588a79c1093e6372555f2c
Author: arg@10ksloc.org <unknown>
Date:   Sat,  5 Aug 2006 14:57:26 +0200

small fix of the last commit

Diffstat:
Mclient.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)  {