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/nodoka/nodoka-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/nodoka/nodoka-theme.c')
-rw-r--r-- | src/themes/nodoka/nodoka-theme.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index dcb8449..b4420bd 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -891,18 +891,15 @@ 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)) { str = g_strdup_printf("<span color=\"#000000\">%s</span>", body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), str); + g_free(str); } - else - { - quoted = g_markup_escape_text(body, -1); - str = g_strdup_printf("<span color=\"#000000\">%s</span>", quoted); - g_free(quoted); + else { + gtk_label_set_text (GTK_LABEL (windata->body_label), body); } - gtk_label_set_markup(GTK_LABEL(windata->body_label), str); - g_free(str); if (body == NULL || *body == '\0') gtk_widget_hide(windata->body_label); |