implemented Button2 press on tags for toggletag on the focused client
This commit is contained in:
parent
4c368bcd24
commit
05fbbbd8dc
2 changed files with 15 additions and 2 deletions
11
event.c
11
event.c
|
@ -109,10 +109,17 @@ buttonpress(XEvent *e)
|
|||
for(a.i = 0; a.i < ntags; a.i++) {
|
||||
x += textw(tags[a.i]);
|
||||
if(ev->x < x) {
|
||||
if(ev->button == Button1)
|
||||
switch(ev->button) {
|
||||
case Button1:
|
||||
view(&a);
|
||||
else if(ev->button == Button3)
|
||||
break;
|
||||
case Button2:
|
||||
toggletag(&a);
|
||||
break;
|
||||
case Button3:
|
||||
toggleview(&a);
|
||||
break;
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue