From 3baf2a6bcfc4cb86c364f5724aaec80f28715a01 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Tue, 2 Aug 2022 18:28:06 +0200 Subject: [PATCH] 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 --- types/scene/layer_shell_v1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/scene/layer_shell_v1.c b/types/scene/layer_shell_v1.c index b674cd36..22986983 100644 --- a/types/scene/layer_shell_v1.c +++ b/types/scene/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); } }