From 176aad4f3c04619019b967f232fdaf37d3de3656 Mon Sep 17 00:00:00 2001 From: fwsmit Date: Tue, 6 Apr 2021 19:01:18 +0200 Subject: [PATCH] input: Wake on action close_all This makes sure the window also gets updated after closing all notifications. Otherwise this actions seems to do nothing until dunst wakes up from something else. --- src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.c b/src/input.c index 1495e4d..3683a63 100644 --- a/src/input.c +++ b/src/input.c @@ -38,7 +38,7 @@ void input_handle_click(unsigned int button, bool button_down, int mouse_x, int enum mouse_action act = acts[i]; if (act == MOUSE_CLOSE_ALL) { queues_history_push_all(); - return; + break; } if (act == MOUSE_DO_ACTION || act == MOUSE_CLOSE_CURRENT) {