commit e8c421e917ac59cdf50e5fd366155ea875e4a29e
parent 2c2625acd3a89ef2c4caa4094a3a51001041a524
Author: Alexander Orzechowski <alex@ozal.ski>
Date: Sun, 21 Jan 2024 15:44:09 -0500
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.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);