applied Sanders zoom_update patch
authorAnselm R.Garbe <arg@10ksloc.org>
Thu, 10 Aug 2006 15:48:50 +0000 (17:48 +0200)
committerAnselm R.Garbe <arg@10ksloc.org>
Thu, 10 Aug 2006 15:48:50 +0000 (17:48 +0200)
client.c
event.c

index 5d34c079af4e0f64d559d30c6cce1c22d90bebb6..8ec8ffb6836c8e69cd0877d68629a87b7b6a8be2 100644 (file)
--- a/client.c
+++ b/client.c
@@ -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))  {
diff --git a/event.c b/event.c
index 25ed6faad4054962bec61348a59795d925d757c5..650967ea335817a13bc09279236e398504315f98 100644 (file)
--- a/event.c
+++ b/event.c
@@ -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))