applied sander's patch
This commit is contained in:
parent
00255728aa
commit
4bd0d33f57
2 changed files with 18 additions and 14 deletions
19
event.c
19
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue