summaryrefslogtreecommitdiff
path: root/sway/layout.c
diff options
context:
space:
mode:
authorMykyta Holubakha <[email protected]>2016-07-21 22:47:35 +0300
committerMykyta Holubakha <[email protected]>2016-07-21 22:47:35 +0300
commita2bc6f3bfd35c9785b8b3bb1a788587f298edef6 (patch)
tree3e36293102f4fae4fac864fced569de8717d73ea /sway/layout.c
parent464239f7ac11d32a6f10b8517b8410a2eb9b493a (diff)
Arrange backgrounds only when required
Diffstat (limited to 'sway/layout.c')
-rw-r--r--sway/layout.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/layout.c b/sway/layout.c
index d32b4139..faa108a1 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -961,9 +961,12 @@ void arrange_windows(swayc_t *container, double width, double height) {
update_visibility(container);
arrange_windows_r(container, width, height);
layout_log(&root_container, 0);
+}
+void arrange_backgrounds(void) {
+ struct background_config *bg;
for (int i = 0; i < desktop_shell.backgrounds->length; ++i) {
- struct background_config *bg = desktop_shell.backgrounds->items[i];
+ bg = desktop_shell.backgrounds->items[i];
wlc_view_send_to_back(bg->handle);
}
}