summaryrefslogtreecommitdiff
path: root/src/themes/standard/theme.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-03-11 11:20:54 +0100
committerraveit65 <[email protected]>2020-04-16 14:35:22 +0200
commiteb8b7e13f2b4c6076c47c87c50ee2ffeb74409a9 (patch)
treed3b8b714de8b271f23daf0c577f9e77cd00e6b5d /src/themes/standard/theme.c
parent7306dd05d93a17903d95d0381c42873ac26336b2 (diff)
downloadmate-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/standard/theme.c')
-rw-r--r--src/themes/standard/theme.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index d36bda3..c81ac34 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -844,6 +844,7 @@ void set_notification_text(GtkWindow* nw, const char* summary, const char* body)
{
char* str;
char* quoted;
+ const char *body_label_text;
GtkRequisition req;
WindowData* windata;
@@ -857,22 +858,15 @@ 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 (pango_parse_markup (body, -1, 0, NULL, NULL, NULL, NULL))
- {
- gtk_label_set_markup (GTK_LABEL (windata->body_label), body);
- }
- else {
+ gtk_label_set_markup (GTK_LABEL (windata->body_label), body);
+ 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);
- }
else
- {
gtk_widget_show(windata->body_label);
- }
update_content_hbox_visibility(windata);