Do not mark the waiting notification as shown

Notifications listed in the waiting queue are never shown
🙈
This commit is contained in:
Benedikt Heine 2018-11-18 18:46:20 +01:00
parent 475d829733
commit 9878de312b

View File

@ -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;
}