small fix of the last commit - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit f4208e7cacd56de70d50218a0b5ace83e39b76a6
 (DIR) parent ecc95c903ba6c9a548588a79c1093e6372555f2c
 (HTM) Author: arg@10ksloc.org <unknown>
       Date:   Sat,  5 Aug 2006 14:57:26 +0200
       
       small fix of the last commit
       
       Diffstat:
         M client.c                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) 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)  {