Use pango_layout_set_text instead of pango_layout_set_markup

This commit is contained in:
Ryan Dwyer 2018-09-22 18:40:19 +10:00
parent 10ef118e09
commit 2f36502828
1 changed files with 4 additions and 2 deletions

View File

@ -54,9 +54,11 @@ PangoLayout *get_pango_layout(cairo_t *cairo, const char *font,
PangoLayout *layout = pango_cairo_create_layout(cairo);
PangoAttrList *attrs;
if (markup) {
char *buf;
GError *error = NULL;
if (pango_parse_markup(text, -1, 0, &attrs, NULL, NULL, &error)) {
pango_layout_set_markup(layout, text, -1);
if (pango_parse_markup(text, -1, 0, &attrs, &buf, NULL, &error)) {
pango_layout_set_text(layout, buf, -1);
free(buf);
} else {
wlr_log(WLR_ERROR, "pango_parse_markup '%s' -> error %s", text,
error->message);