diff options
author | rbuj <[email protected]> | 2020-03-11 11:20:54 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-16 14:35:22 +0200 |
commit | eb8b7e13f2b4c6076c47c87c50ee2ffeb74409a9 (patch) | |
tree | d3b8b714de8b271f23daf0c577f9e77cd00e6b5d /src/themes/coco/coco-theme.c | |
parent | 7306dd05d93a17903d95d0381c42873ac26336b2 (diff) | |
download | mate-notification-daemon-eb8b7e13f2b4c6076c47c87c50ee2ffeb74409a9.tar.bz2 mate-notification-daemon-eb8b7e13f2b4c6076c47c87c50ee2ffeb74409a9.tar.xz |
The body of a notification may also contain hyperlinks
Diffstat (limited to 'src/themes/coco/coco-theme.c')
-rw-r--r-- | src/themes/coco/coco-theme.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index 94f38e3..6cfa677 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -489,6 +489,7 @@ set_notification_text(GtkWindow *nw, const char *summary, const char *body) { char *str; char* quoted; + const char *body_label_text; WindowData *windata = g_object_get_data(G_OBJECT(nw), "windata"); g_assert(windata != NULL); @@ -499,15 +500,12 @@ 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 (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL)) - { - str = g_strdup_printf("<span color=\"#EAEAEA\">%s</span>", body); - gtk_label_set_markup (GTK_LABEL (windata->body_label), str); - g_free(str); - } - else { + str = g_strdup_printf("<span color=\"#EAEAEA\">%s</span>", body); + gtk_label_set_markup (GTK_LABEL (windata->body_label), str); + g_free(str); + body_label_text = gtk_label_get_text (GTK_LABEL (windata->body_label)); + if ((body_label_text == NULL) || (strlen (body_label_text) == 0)) gtk_label_set_text (GTK_LABEL (windata->body_label), body); - } if (body == NULL || *body == '\0') gtk_widget_hide(windata->body_label); |