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.
This commit is contained in:
fwsmit 2021-04-06 19:01:18 +02:00
parent d65f69b4db
commit 176aad4f3c

View File

@ -38,7 +38,7 @@ void input_handle_click(unsigned int button, bool button_down, int mouse_x, int
enum mouse_action act = acts[i]; enum mouse_action act = acts[i];
if (act == MOUSE_CLOSE_ALL) { if (act == MOUSE_CLOSE_ALL) {
queues_history_push_all(); queues_history_push_all();
return; break;
} }
if (act == MOUSE_DO_ACTION || act == MOUSE_CLOSE_CURRENT) { if (act == MOUSE_DO_ACTION || act == MOUSE_CLOSE_CURRENT) {