From 204e1f47122d5a48865802dd1fb94fe0f05c2401 Mon Sep 17 00:00:00 2001 From: v44r Date: Thu, 31 Jan 2019 10:45:12 +0100 Subject: Rebase #1636 against current master --- swaybar/i3bar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'swaybar/i3bar.c') diff --git a/swaybar/i3bar.c b/swaybar/i3bar.c index da93a132..43e2fe2d 100644 --- a/swaybar/i3bar.c +++ b/swaybar/i3bar.c @@ -21,6 +21,7 @@ void i3bar_block_unref(struct i3bar_block *block) { free(block->full_text); free(block->short_text); free(block->align); + free(block->min_width_str); free(block->name); free(block->instance); free(block->color); @@ -78,7 +79,7 @@ static void i3bar_parse_json(struct status_line *status, block->min_width = json_object_get_int(min_width); } else if (type == json_type_string) { /* the width will be calculated when rendering */ - block->min_width = 0; + block->min_width_str = strdup(json_object_get_string(min_width)); } } block->align = strdup(align ? json_object_get_string(align) : "left"); -- cgit v1.2.3