mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
[widgets/progressbar] add missing 'border_width' for lua interface
This commit is contained in:
parent
ac07ea957e
commit
e756b2bc9a
1 changed files with 5 additions and 0 deletions
|
@ -532,6 +532,11 @@ progressbar_tell(widget_t *widget, const char *property, const char *new_value)
|
|||
tmp = d->border_padding;
|
||||
d->border_padding = atoi(new_value);
|
||||
}
|
||||
else if(!a_strcmp(property, "border_width"))
|
||||
{
|
||||
tmp = d->border_width;
|
||||
d->border_width = atoi(new_value);
|
||||
}
|
||||
else if(!a_strcmp(property, "width"))
|
||||
{
|
||||
tmp = d->width;
|
||||
|
|
Loading…
Reference in a new issue