mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
swaybar: render with minimum height, nominally text height
This commit is contained in:
parent
6e6476c3d5
commit
1844a5bafb
2 changed files with 10 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue