mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Merge cb0c04cf46
into ab455bbada
This commit is contained in:
commit
489e3a9829
1 changed files with 4 additions and 4 deletions
|
@ -203,8 +203,8 @@ static uint32_t render_status_block(struct render_context *ctx,
|
||||||
"%s", block->min_width_str);
|
"%s", block->min_width_str);
|
||||||
block->min_width = w;
|
block->min_width = w;
|
||||||
}
|
}
|
||||||
if (width < block->min_width) {
|
if (width < block->min_width * output->scale) {
|
||||||
width = block->min_width;
|
width = block->min_width * output->scale;
|
||||||
}
|
}
|
||||||
|
|
||||||
double block_width = width;
|
double block_width = width;
|
||||||
|
@ -369,8 +369,8 @@ static void predict_status_block_pos(cairo_t *cairo,
|
||||||
1, block->markup, "%s", block->min_width_str);
|
1, block->markup, "%s", block->min_width_str);
|
||||||
block->min_width = w;
|
block->min_width = w;
|
||||||
}
|
}
|
||||||
if (width < block->min_width) {
|
if (width < block->min_width * output->scale) {
|
||||||
width = block->min_width;
|
width = block->min_width * output->scale;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue