From b5fbfd0e65926c0be4cc388dad825ac1f963bdaf Mon Sep 17 00:00:00 2001 From: Benedikt Heine Date: Fri, 6 Jul 2018 18:35:50 +0200 Subject: [PATCH] Print progress in notification_print --- src/notification.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notification.c b/src/notification.c index 9e5dd9a..df5b851 100644 --- a/src/notification.c +++ b/src/notification.c @@ -64,6 +64,7 @@ void notification_print(notification *n) printf("\tbg: %s\n", n->colors[ColBG]); printf("\tframe: %s\n", n->colors[ColFrame]); printf("\tfullscreen: %s\n", enum_to_string_fullscreen(n->fullscreen)); + printf("\tprogress: %d\n", n->progress); printf("\tid: %d\n", n->id); if (n->urls) { char *urls = string_replace_all("\n", "\t\t\n", g_strdup(n->urls));