From 9e55951d5aab9ffaa0fa898e0a08fff4095a76f8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Apr 2024 19:37:41 +0530 Subject: [PATCH] ... --- glfw/wl_window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/glfw/wl_window.c b/glfw/wl_window.c index 62ab58c9c..c6b3a4c88 100644 --- a/glfw/wl_window.c +++ b/glfw/wl_window.c @@ -834,6 +834,7 @@ attach_temp_buffer_during_window_creation(_GLFWwindow *window) { static void loop_till_window_fully_created(_GLFWwindow *window) { if (!window->wl.window_fully_created) { + debug("Waiting for compositor to send fractional scale for window\n"); monotonic_t start = monotonic(); while (!window->wl.window_fully_created && monotonic() - start < ms_to_monotonic_t(300)) { if (wl_display_roundtrip(_glfw.wl.display) == -1) {