From 9878de312bba4fb89ba8019e67a0bb596a2641eb Mon Sep 17 00:00:00 2001 From: Benedikt Heine Date: Sun, 18 Nov 2018 18:46:20 +0100 Subject: [PATCH] Do not mark the waiting notification as shown Notifications listed in the waiting queue are never shown :see_no_evil: --- src/queues.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/queues.c b/src/queues.c index 75e38aa..8e03b63 100644 --- a/src/queues.c +++ b/src/queues.c @@ -455,7 +455,7 @@ void queues_update(struct dunst_status status) while ( (i_waiting = g_queue_peek_head_link(waiting)) && (i_displayed = g_queue_peek_tail_link(displayed))) { - while (i_waiting && ! queues_notification_is_ready(i_waiting->data, status, true)) { + while (i_waiting && ! queues_notification_is_ready(i_waiting->data, status, false)) { i_waiting = i_waiting->prev; }