diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 17:48:50 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 17:48:50 +0200 |
commit | 9fce8215b7c1b95903adbfd0cb7d6e2822ea063f (patch) | |
tree | 79925c9f6a0f50b192eba5b0e6d9a8eb1966910b | |
parent | 6521c2dd4160099616fa10035aa0f0e595c86204 (diff) | |
download | dwm-9fce8215b7c1b95903adbfd0cb7d6e2822ea063f.tar.gz |
applied Sanders zoom_update patch
-rw-r--r-- | client.c | 2 | ||||
-rw-r--r-- | event.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/client.c b/client.c index 5d34c07..8ec8ffb 100644 --- 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 25ed6fa..650967e 100644 --- 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)) |