From 4bd0d33f57c6fb764ef546a9b0ebfcd20ff1df70 Mon Sep 17 00:00:00 2001 From: "Anselm R.Garbe" Date: Thu, 10 Aug 2006 11:19:25 +0200 Subject: applied sander's patch --- event.c | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'event.c') diff --git a/event.c b/event.c index 0f984f2..36d873f 100644 --- a/event.c +++ b/event.c @@ -122,25 +122,22 @@ buttonpress(XEvent *e) } } else if((c = getclient(ev->window))) { + higher(c); focus(c); switch(ev->button) { default: break; case Button1: - if(!c->ismax) { - if(arrange == dofloat || c->isfloat) { - higher(c); - movemouse(c); - } - else - zoom(NULL); - } + if(!c->ismax && (arrange == dofloat || c->isfloat)) + movemouse(c); + break; + case Button2: + if(!c->ismax && arrange != dofloat && !c->isfloat) + zoom(NULL); break; case Button3: - if(!c->ismax && (arrange == dofloat || c->isfloat)) { - higher(c); + if(!c->ismax && (arrange == dofloat || c->isfloat)) resizemouse(c); - } break; } } -- cgit v1.2.3-54-g00ecf