[widgets/progressbar] add missing 'border_width' for lua interface

This commit is contained in:
marco candrian 2008-05-27 00:36:40 +02:00 committed by Marco Candrian
parent ac07ea957e
commit e756b2bc9a
1 changed files with 5 additions and 0 deletions

View File

@ -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;