aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/layout.c5
-rw-r--r--sway/workspace.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/sway/layout.c b/sway/layout.c
index 3d746ebe..2e0bf0bb 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -959,6 +959,11 @@ void arrange_windows(swayc_t *container, double width, double height) {
update_visibility(container);
arrange_windows_r(container, width, height);
layout_log(&root_container, 0);
+
+ for (int i = 0; i < desktop_shell.backgrounds->length; ++i) {
+ struct background_config *bg = desktop_shell.backgrounds->items[i];
+ wlc_view_send_to_back(bg->handle);
+ }
}
/**
diff --git a/sway/workspace.c b/sway/workspace.c
index 3ac6626c..913a412c 100644
--- a/sway/workspace.c
+++ b/sway/workspace.c
@@ -309,10 +309,6 @@ bool workspace_switch(swayc_t *workspace) {
}
swayc_t *output = swayc_parent_by_type(workspace, C_OUTPUT);
arrange_windows(output, -1, -1);
- for (int i = 0; i < desktop_shell.backgrounds->length; ++i) {
- struct background_config *bg = desktop_shell.backgrounds->items[i];
- wlc_view_send_to_back(bg->handle);
- }
return true;
}