swaybar: render with minimum height, nominally text height

This commit is contained in:
Ian Fan 2018-10-20 21:12:54 +01:00
parent 6e6476c3d5
commit 1844a5bafb
2 changed files with 10 additions and 7 deletions

View file

@ -448,7 +448,9 @@ static uint32_t render_to_cairo(cairo_t *cairo, struct swaybar_output *output) {
}
cairo_paint(cairo);
uint32_t max_height = 0;
int th;
get_text_size(cairo, config->font, NULL, &th, NULL, output->scale, false, "");
uint32_t max_height = (th + WS_VERTICAL_PADDING * 4) / output->scale;
/*
* Each render_* function takes the actual height of the bar, and returns
* the ideal height. If the actual height is too short, the render function