From ad5d14c672267aea387b75e8ae3debf295683a03 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 10 Jun 2021 16:53:27 +0530 Subject: [PATCH] Fix #3703 --- kitty/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/mouse.c b/kitty/mouse.c index faaf4d674..44664fef5 100644 --- a/kitty/mouse.c +++ b/kitty/mouse.c @@ -678,7 +678,7 @@ mouse_event(int button, int modifiers, int action) { handle_event(w, button, modifiers, window_idx); clamp_to_window = false; } else debug("no window for event\n"); - } + } else debug("\n"); if (mouse_cursor_shape != old_cursor) { set_mouse_cursor(mouse_cursor_shape); }