add support for right/left statusbar position and clicks
This commit is contained in:
parent
e3de02d2ce
commit
65fe4e8933
|
@ -150,10 +150,14 @@ tasklist_button_press(Widget *widget, XButtonPressedEvent *ev)
|
|||
box_width = widget->width / n;
|
||||
|
||||
if(ev->button == Button1 && CLEANMASK(ev->state) == NoSymbol)
|
||||
{
|
||||
if(widget->statusbar->position == BarTop
|
||||
|| widget->statusbar->position == BarBot)
|
||||
{
|
||||
ci = (ev->x - widget->location) / box_width;
|
||||
else if(widget->statusbar->position == BarRight)
|
||||
ci = (ev->y - widget->location) / box_width;
|
||||
else
|
||||
ci = ((widget->statusbar->width - ev->y) - widget->location) / box_width;
|
||||
|
||||
/* found first visible client */
|
||||
for(c = globalconf.clients;
|
||||
|
@ -165,6 +169,7 @@ tasklist_button_press(Widget *widget, XButtonPressedEvent *ev)
|
|||
i++;
|
||||
|
||||
focus(c, True, widget->statusbar->screen);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue