You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
268 B
19 lines
268 B
3 years ago
|
int
|
||
|
width_stbutton(Bar *bar, BarArg *a)
|
||
|
{
|
||
|
return TEXTW(buttonbar);
|
||
|
}
|
||
|
|
||
|
int
|
||
|
draw_stbutton(Bar *bar, BarArg *a)
|
||
|
{
|
||
|
return drw_text(drw, a->x, a->y, a->w, a->h, lrpad / 2, buttonbar, 0, False);
|
||
|
}
|
||
|
|
||
|
int
|
||
|
click_stbutton(Bar *bar, Arg *arg, BarArg *a)
|
||
|
{
|
||
|
return ClkButton;
|
||
|
}
|
||
|
|