diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 10:16:12 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 10:16:12 +0200 |
commit | b79b5facb104a653314577bb7f15824396b9e94b (patch) | |
tree | a145b85cb026c7965b27b3db9ae3bcf0fdaa63bb /event.c | |
parent | c53f0fca912e05cddcfbf79d99678b16d183c67d (diff) | |
download | dwm-b79b5facb104a653314577bb7f15824396b9e94b.tar.gz |
disallow zoom on maximized clients
Diffstat (limited to 'event.c')
-rw-r--r-- | event.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/event.c b/event.c index b6beed5..0f984f2 100644 --- a/event.c +++ b/event.c @@ -127,15 +127,14 @@ buttonpress(XEvent *e) default: break; case Button1: - if(!c->ismax && (arrange == dofloat || c->isfloat)) { - higher(c); - movemouse(c); + if(!c->ismax) { + if(arrange == dofloat || c->isfloat) { + higher(c); + movemouse(c); + } + else + zoom(NULL); } - else - zoom(NULL); - break; - case Button2: - lower(c); break; case Button3: if(!c->ismax && (arrange == dofloat || c->isfloat)) { @@ -225,7 +224,7 @@ enternotify(XEvent *e) Client *c; XCrossingEvent *ev = &e->xcrossing; - if(ev->detail == NotifyInferior) + if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) return; if((c = getclient(ev->window)) || (c = getctitle(ev->window))) |