From ebfbf6082f7ea2874470e51952a23791450d9ff1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 21 Jun 2021 21:23:29 +0530 Subject: [PATCH] ... --- kitty/child-monitor.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kitty/child-monitor.c b/kitty/child-monitor.c index 45deaaafd..70cd5b180 100644 --- a/kitty/child-monitor.c +++ b/kitty/child-monitor.c @@ -1034,10 +1034,10 @@ process_global_state(void *data) { if (parse_input(self)) input_read = true; render(now, input_read); #ifdef __APPLE__ - if (has_cocoa_pending_actions) { - process_cocoa_pending_actions(); - maximum_wait = 0; // ensure loop ticks again so that the actions side effects are performed immediately - } + if (has_cocoa_pending_actions) { + process_cocoa_pending_actions(); + maximum_wait = 0; // ensure loop ticks again so that the actions side effects are performed immediately + } #endif report_reaped_pids(); bool should_quit = false;