From 5b3a46e2ec777ebf8454cd70145e37ff202c3918 Mon Sep 17 00:00:00 2001 From: progandy Date: Mon, 27 May 2013 19:43:30 +0200 Subject: [PATCH] fix broken window update for history --- dunst.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dunst.c b/dunst.c index 534a6d2..6d913f7 100644 --- a/dunst.c +++ b/dunst.c @@ -168,9 +168,7 @@ void history_pop(void) n->timeout = settings.sticky_history ? 0 : n->timeout; g_queue_push_head(queue, n); - if (!xctx.visible) { - wake_up(); - } + wake_up(); } void wake_up(void)