aboutsummaryrefslogtreecommitdiff
path: root/src/notification.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/notification.c')
-rw-r--r--src/notification.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/notification.c b/src/notification.c
index c76da87..0788ec2 100644
--- a/src/notification.c
+++ b/src/notification.c
@@ -188,6 +188,16 @@ notification_is_volume(Notification *self)
return self->priv->is_volume;
}
+/**
+ * A notification is considered empty if both the summary and body do not
+ * contain any text.
+ */
+gboolean
+notification_is_empty(Notification *self)
+{
+ return (self->priv->summary_length == 0) && (self->priv->body_length == 0);
+}
+
void
notification_print(Notification *self)
{