From 040caec04c061ee2dbbe9e1040e92966cdd63701 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 26 Jan 2025 22:48:33 +0530 Subject: [PATCH] ... --- kitty/glfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/glfw.c b/kitty/glfw.c index 08b4b0f78..895f31e7a 100644 --- a/kitty/glfw.c +++ b/kitty/glfw.c @@ -453,7 +453,7 @@ cursor_enter_callback(GLFWwindow *w, int entered) { global_state.callback_os_window->mouse_y = y * global_state.callback_os_window->viewport_y_ratio; if (is_window_ready_for_callbacks()) enter_event(); request_tick_callback(); - } else debug_input("Mouse cursor left window: %llu", global_state.callback_os_window->id); + } else debug_input("Mouse cursor left window: %llu\n", global_state.callback_os_window->id); global_state.callback_os_window = NULL; }