aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-05-05 23:38:09 +0100
committerGitHub <noreply@github.com>2018-05-05 23:38:09 +0100
commit54265bf65e2b6a799d68c72c0c43a2f8dd5b6f11 (patch)
treead5c1774aa51ee8a1755154471fb802c626f55ab /sway/tree
parent72ce50737d2ac47fdf818e0bdada375ba1208d10 (diff)
parent556ff5f50efe7372f0147339d6c26ed7008acfd2 (diff)
Merge pull request #1917 from RyanDwyer/pango-markup
Implement pango support
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/container.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index e1be32d1..38db29c2 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -580,7 +580,7 @@ static void update_title_texture(struct sway_container *con,
int height = config->font_height * scale;
cairo_t *c = cairo_create(NULL);
- get_text_size(c, config->font, &width, NULL, scale, false,
+ get_text_size(c, config->font, &width, NULL, scale, config->pango_markup,
"%s", con->formatted_title);
cairo_destroy(c);
@@ -596,7 +596,8 @@ static void update_title_texture(struct sway_container *con,
class->text[2], class->text[3]);
cairo_move_to(cairo, 0, 0);
- pango_printf(cairo, config->font, scale, false, "%s", con->formatted_title);
+ pango_printf(cairo, config->font, scale, config->pango_markup,
+ "%s", con->formatted_title);
cairo_surface_flush(surface);
unsigned char *data = cairo_image_surface_get_data(surface);
@@ -628,7 +629,7 @@ void container_calculate_title_height(struct sway_container *container) {
}
cairo_t *cairo = cairo_create(NULL);
int height;
- get_text_size(cairo, config->font, NULL, &height, 1, false,
+ get_text_size(cairo, config->font, NULL, &height, 1, config->pango_markup,
"%s", container->formatted_title);
cairo_destroy(cairo);
container->title_height = height;