mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-26 21:58:08 +01:00
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.
This commit is contained in:
parent
2c2625acd3
commit
e8c421e917
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue