diff options
author | kajzer <[email protected]> | 2016-10-07 16:48:19 +0200 |
---|---|---|
committer | kajzer <[email protected]> | 2016-10-07 16:48:19 +0200 |
commit | 3fa974b37a629eab3668b2565dd0c59dbe38c1a8 (patch) | |
tree | d6ce07f35b7dd6fea58aea4c024111147c8e8217 /src/themes/slider/theme.c | |
parent | 7bf293b7c187f12c9b2697ba2b6e02b3281b574a (diff) | |
download | mate-notification-daemon-3fa974b37a629eab3668b2565dd0c59dbe38c1a8.tar.bz2 mate-notification-daemon-3fa974b37a629eab3668b2565dd0c59dbe38c1a8.tar.xz |
Fix: bold formatting #111
Diffstat (limited to 'src/themes/slider/theme.c')
-rw-r--r-- | src/themes/slider/theme.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/themes/slider/theme.c b/src/themes/slider/theme.c index cf4724a..cc8e420 100644 --- a/src/themes/slider/theme.c +++ b/src/themes/slider/theme.c @@ -513,15 +513,12 @@ void set_notification_text(GtkWindow* nw, const char* summary, const char* body) gtk_label_set_markup(GTK_LABEL(windata->summary_label), str); g_free(str); - if (strstr(body, "&") || strstr(body, "<") || strstr(body, ">") || strstr(body, "'") || strstr(body, """)) + if (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL)) { - gtk_label_set_markup(GTK_LABEL(windata->body_label), body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), body); } - else - { - quoted = g_markup_escape_text(body, -1); - gtk_label_set_markup(GTK_LABEL(windata->body_label), quoted); - g_free(quoted); + else { + gtk_label_set_text (GTK_LABEL (windata->body_label), body); } if (body == NULL || *body == '\0') |