mirror of
https://github.com/swaywm/sway.git
synced 2026-03-20 05:34:28 -04:00
Rebase #1636 against current master
This commit is contained in:
parent
1049f360e1
commit
204e1f4712
3 changed files with 9 additions and 2 deletions
|
|
@ -159,6 +159,12 @@ static uint32_t render_status_block(cairo_t *cairo,
|
|||
double ws_vertical_padding = config->status_padding * output->scale;
|
||||
|
||||
int width = text_width;
|
||||
if (block->min_width_str) {
|
||||
int w;
|
||||
get_text_size(cairo, config->font, &w, NULL, NULL,
|
||||
output->scale, block->markup, "%s", block->min_width_str);
|
||||
block->min_width = w;
|
||||
}
|
||||
if (width < block->min_width) {
|
||||
width = block->min_width;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue