summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Levinsen <[email protected]>2022-08-02 18:28:06 +0200
committerKenny Levinsen <[email protected]>2022-08-06 00:23:44 +0200
commitb36818c39a6e2d4312888694d34e75eddb42fa56 (patch)
treeb605ad481e011ccf1ed4f76d271febbc2a99ae96
parent684fd113d5d56cb31a46f1ae08909bba15e0934a (diff)
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
-rw-r--r--layer_shell_v1.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}