sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5a1d95ac2ab39857c51a720624118e4fde292ab4
parent c0e45222023e1a0ca0a37b73bb79931ac45f67aa
Author: Drew DeVault <ddevault@linode.com>
Date:   Mon, 18 Jul 2016 09:12:48 -0400

Move backgrounds to back after arrange_windows

Fixes #769

Diffstat:
Msway/layout.c | 5+++++
Msway/workspace.c | 4----
2 files changed, 5 insertions(+), 4 deletions(-)

diff --git 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 @@ -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; }