Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
applied sander's patch
[dwm.git]
/
event.c
diff --git
a/event.c
b/event.c
index
0f984f2
..
36d873f
100644
(file)
--- a/
event.c
+++ b/
event.c
@@
-122,25
+122,22
@@
buttonpress(XEvent *e)
}
}
else if((c = getclient(ev->window))) {
}
}
else if((c = getclient(ev->window))) {
+ higher(c);
focus(c);
switch(ev->button) {
default:
break;
case Button1:
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:
break;
case Button3:
- if(!c->ismax && (arrange == dofloat || c->isfloat)) {
- higher(c);
+ if(!c->ismax && (arrange == dofloat || c->isfloat))
resizemouse(c);
resizemouse(c);
- }
break;
}
}
break;
}
}