implemented focusprev on button1 press in the bar, and focusnext on button3 press in the bar
This commit is contained in:
parent
d3969634ac
commit
8278f0a6be
1 changed files with 6 additions and 2 deletions
10
event.c
10
event.c
|
@ -103,15 +103,19 @@ buttonpress(XEvent *e)
|
||||||
|
|
||||||
if(barwin == ev->window) {
|
if(barwin == ev->window) {
|
||||||
switch(ev->button) {
|
switch(ev->button) {
|
||||||
default:
|
case Button1:
|
||||||
x = 0;
|
x = 0;
|
||||||
for(a.i = 0; a.i < ntags; a.i++) {
|
for(a.i = 0; a.i < ntags; a.i++) {
|
||||||
x += textw(tags[a.i]);
|
x += textw(tags[a.i]);
|
||||||
if(ev->x < x) {
|
if(ev->x < x) {
|
||||||
view(&a);
|
view(&a);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
focusprev(NULL);
|
||||||
break;
|
break;
|
||||||
}
|
case Button3:
|
||||||
}
|
focusnext(NULL);
|
||||||
break;
|
break;
|
||||||
case Button4:
|
case Button4:
|
||||||
viewprev(&a);
|
viewprev(&a);
|
||||||
|
|
Loading…
Reference in a new issue