From de1dee6c3b2b26ba82f5ea369bdda3136228a359 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 24 Mar 2024 21:57:52 +0530 Subject: [PATCH] Debug setting of exclusive zone --- glfw/wl_window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/glfw/wl_window.c b/glfw/wl_window.c index 1f51f2cd3..79f13aad3 100644 --- a/glfw/wl_window.c +++ b/glfw/wl_window.c @@ -322,6 +322,7 @@ update_regions(_GLFWwindow* window) { case GLFW_EDGE_LEFT: case GLFW_EDGE_RIGHT: exclusive_zone = window->wl.width; break; } zwlr_layer_surface_v1_set_exclusive_zone(window->wl.layer_shell.zwlr_layer_surface_v1, exclusive_zone); + debug("Layer shell exclusive_zone set to: %d\n", exclusive_zone); } if (window->wl.transparent && !window->wl.org_kde_kwin_blur) return; struct wl_region* region = wl_compositor_create_region(_glfw.wl.compositor);