removed the stack position stuff
This commit is contained in:
parent
1c1d09f3e9
commit
10885d349a
8 changed files with 26 additions and 96 deletions
8
event.c
8
event.c
|
@ -123,12 +123,8 @@ buttonpress(XEvent *e) {
|
|||
return;
|
||||
}
|
||||
}
|
||||
if(ev->x < x + bmw) {
|
||||
if(ev->button == Button1)
|
||||
togglemode(NULL);
|
||||
else if(ev->button == Button3)
|
||||
togglestackpos(NULL);
|
||||
}
|
||||
if((ev->x < x + bmw) && (ev->button == Button1))
|
||||
togglemode(NULL);
|
||||
}
|
||||
else if((c = getclient(ev->window))) {
|
||||
focus(c);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue