From e756b2bc9aa447277403882aca965789ae3835a8 Mon Sep 17 00:00:00 2001 From: marco candrian Date: Tue, 27 May 2008 00:36:40 +0200 Subject: [PATCH] [widgets/progressbar] add missing 'border_width' for lua interface --- widgets/progressbar.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/widgets/progressbar.c b/widgets/progressbar.c index 0a934482d..db3469ac8 100644 --- a/widgets/progressbar.c +++ b/widgets/progressbar.c @@ -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;