summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2024-01-21 15:44:09 -0500
committerSimon Ser <contact@emersion.fr>2024-01-21 22:01:35 +0100
commite8c421e917ac59cdf50e5fd366155ea875e4a29e (patch)
tree6f96a125dca967a78a0b0d69d6fff172bd809f48
parent2c2625acd3a89ef2c4caa4094a3a51001041a524 (diff)
layer_shell: Fix typo of return instead of continue
Otherwise we would skip arranging the rest of the surfaces if one of them isn't initialized.
-rw-r--r--sway/desktop/layer_shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 968b0cdb2..c71abce7f 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -63,7 +63,7 @@ static void arrange_surface(struct sway_output *output, const struct wlr_box *fu
}
if (!surface->scene->layer_surface->initialized) {
- return;
+ continue;
}
wlr_scene_layer_surface_v1_configure(surface->scene, full_area, usable_area);