From 69a7b9215e7bf5296891913337055bc9e0d84d88 Mon Sep 17 00:00:00 2001 From: Daniel De Graaf Date: Sat, 4 Sep 2021 11:16:55 -0400 Subject: Fix overly-wide mark textures The width of the texture needs to be calculated using the string that is actually displayed in the texture. --- sway/tree/container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/tree/container.c b/sway/tree/container.c index 41d43b43..d66d3870 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -518,7 +518,7 @@ static void render_titlebar_text_texture(struct sway_output *output, } cairo_set_font_options(c, fo); get_text_size(c, config->font, &width, NULL, &baseline, scale, - config->pango_markup, "%s", con->formatted_title); + config->pango_markup, "%s", text); cairo_surface_destroy(dummy_surface); cairo_destroy(c); -- cgit v1.2.3