summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2024-10-17 10:10:02 -0400
committerFurkan Sahin <furkan-dev@proton.me>2024-10-17 10:10:02 -0400
commitde64dd1fb8890f69429b5772cd66f6263dd12ddf (patch)
tree2d25e9c8494c5579847c1895646d4ad5e3669bdd
parente8a64c10a01f08f27d2791a2998387a3b9d60aa5 (diff)
layer_shell: Restore sway 1.9 ordering
(cherry picked from commit 8363699f145fca844772643ceedcdaa7c6b90982)
-rw-r--r--sway/desktop/layer_shell.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 62c6a511..333c09b4 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -82,14 +82,15 @@ void arrange_layers(struct sway_output *output) {
&usable_area.width, &usable_area.height);
const struct wlr_box full_area = usable_area;
- arrange_surface(output, &full_area, &usable_area, output->layers.shell_background, true);
- arrange_surface(output, &full_area, &usable_area, output->layers.shell_background, false);
- arrange_surface(output, &full_area, &usable_area, output->layers.shell_bottom, true);
- arrange_surface(output, &full_area, &usable_area, output->layers.shell_bottom, false);
- arrange_surface(output, &full_area, &usable_area, output->layers.shell_top, true);
- arrange_surface(output, &full_area, &usable_area, output->layers.shell_top, false);
arrange_surface(output, &full_area, &usable_area, output->layers.shell_overlay, true);
+ arrange_surface(output, &full_area, &usable_area, output->layers.shell_top, true);
+ arrange_surface(output, &full_area, &usable_area, output->layers.shell_bottom, true);
+ arrange_surface(output, &full_area, &usable_area, output->layers.shell_background, true);
+
arrange_surface(output, &full_area, &usable_area, output->layers.shell_overlay, false);
+ arrange_surface(output, &full_area, &usable_area, output->layers.shell_top, false);
+ arrange_surface(output, &full_area, &usable_area, output->layers.shell_bottom, false);
+ arrange_surface(output, &full_area, &usable_area, output->layers.shell_background, false);
if (!wlr_box_equal(&usable_area, &output->usable_area)) {
sway_log(SWAY_DEBUG, "Usable area changed, rearranging output");