From a58187943d34bec575df3a712eecfa00260e7a25 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Mar 2024 18:29:36 +0530 Subject: [PATCH] ... --- glfw/wl_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/wl_window.c b/glfw/wl_window.c index feef5f32f..d40210d1f 100644 --- a/glfw/wl_window.c +++ b/glfw/wl_window.c @@ -823,7 +823,7 @@ layer_set_properties(_GLFWwindow *window) { #define surface window->wl.layer_shell.zwlr_layer_surface_v1 zwlr_layer_surface_v1_set_size(surface, panel_width, panel_height); if (window->wl.wp_viewport) wp_viewport_set_destination(window->wl.wp_viewport, window->wl.width, window->wl.height); - debug("Compositor informed layer size: %dx%d viewport: %dx%d \n", panel_width, panel_height, window->wl.width, window->wl.height); + debug("Compositor will be informed that layer size: %dx%d viewport: %dx%d at next surface commit\n", panel_width, panel_height, window->wl.width, window->wl.height); zwlr_layer_surface_v1_set_anchor(surface, which_anchor); zwlr_layer_surface_v1_set_exclusive_zone(surface, exclusive_zone); zwlr_layer_surface_v1_set_margin(surface, 0, 0, 0, 0);