aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/render.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/render.c')
-rw-r--r--sway/desktop/render.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
index ecac262e..8a6f63aa 100644
--- a/sway/desktop/render.c
+++ b/sway/desktop/render.c
@@ -466,12 +466,12 @@ static void render_titlebar(struct sway_output *output,
466 &texture_box.width, &texture_box.height); 466 &texture_box.width, &texture_box.height);
467 title_ob_width = texture_box.width; 467 title_ob_width = texture_box.width;
468 468
469 // The title texture might be shorter than the config->font_height, in 469 // The title texture might be shorter than the config->font_height,
470 // which case we need to pad it as evenly as possible above and below. 470 // in which case we need to pad it above and below.
471 int ob_padding_total = config->font_height * output_scale - 471 int ob_padding_above = (config->font_baseline - con->title_baseline)
472 texture_box.height; 472 * output_scale;
473 int ob_padding_above = floor(ob_padding_total / 2); 473 int ob_padding_below = (config->font_height - con->title_height)
474 int ob_padding_below = ceil(ob_padding_total / 2); 474 * output_scale - ob_padding_above;
475 475
476 // Render texture 476 // Render texture
477 texture_box.x = (x - output_x + TITLEBAR_H_PADDING) * output_scale; 477 texture_box.x = (x - output_x + TITLEBAR_H_PADDING) * output_scale;