aboutsummaryrefslogtreecommitdiffstats
path: root/event.c
diff options
context:
space:
mode:
Diffstat (limited to 'event.c')
-rw-r--r--event.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/event.c b/event.c
index 1a8de56..e5ca166 100644
--- a/event.c
+++ b/event.c
@@ -118,21 +118,24 @@ buttonpress(XEvent *e)
}
}
else if((c = getclient(ev->window))) {
- higher(c);
focus(c);
switch(ev->button) {
default:
break;
case Button1:
- if(!c->ismax && (arrange == dofloat || c->isfloat))
+ if(!c->ismax && (arrange == dofloat || c->isfloat)) {
+ restack(c);
movemouse(c);
+ }
break;
case Button2:
zoom(NULL);
break;
case Button3:
- if(!c->ismax && (arrange == dofloat || c->isfloat))
+ if(!c->ismax && (arrange == dofloat || c->isfloat)) {
+ restack(c);
resizemouse(c);
+ }
break;
}
}