tapplied Sanders zoom_update patch - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 9fce8215b7c1b95903adbfd0cb7d6e2822ea063f
 (DIR) parent 6521c2dd4160099616fa10035aa0f0e595c86204
 (HTM) Author: Anselm R.Garbe <arg@10ksloc.org>
       Date:   Thu, 10 Aug 2006 17:48:50 +0200
       
       applied Sanders zoom_update patch
       
       Diffstat:
         M client.c                            |       2 +-
         M event.c                             |       3 +--
       
       2 files changed, 2 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/client.c b/client.c
       t@@ -461,7 +461,7 @@ zoom(Arg *arg)
        {
                Client *c;
        
       -        if(!sel || (arrange != dotile) || sel->isfloat)
       +        if(!sel || (arrange != dotile) || sel->isfloat || sel->ismax)
                        return;
        
                if(sel == getnext(clients))  {
 (DIR) diff --git a/event.c b/event.c
       t@@ -132,8 +132,7 @@ buttonpress(XEvent *e)
                                        movemouse(c);
                                break;
                        case Button2:
       -                        if(!c->ismax && arrange != dofloat && !c->isfloat)
       -                                zoom(NULL);
       +                        zoom(NULL);
                                break;
                        case Button3:
                                if(!c->ismax && (arrange == dofloat || c->isfloat))