From b36818c39a6e2d4312888694d34e75eddb42fa56 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Tue, 2 Aug 2022 18:28:06 +0200 Subject: scene/layer_shell: Ignore unmapped exclusion zone Only the exclusion zone for mapped layer shell surfaces should be respected. In particular, a layer shell surface that was mapped with an exclusion zone but is now unmapped should not adjust the usable area. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3471 --- layer_shell_v1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layer_shell_v1.c b/layer_shell_v1.c index b674cd3..2298698 100644 --- a/layer_shell_v1.c +++ b/layer_shell_v1.c @@ -125,7 +125,7 @@ void wlr_scene_layer_surface_v1_configure( wlr_scene_node_set_position(&scene_layer_surface->tree->node, box.x, box.y); wlr_layer_surface_v1_configure(layer_surface, box.width, box.height); - if (state->exclusive_zone > 0) { + if (layer_surface->mapped && state->exclusive_zone > 0) { layer_surface_exclusive_zone(state, usable_area); } } -- cgit v1.2.3