diff options
author | Mykyta Holubakha <[email protected]> | 2016-07-21 22:47:35 +0300 |
---|---|---|
committer | Mykyta Holubakha <[email protected]> | 2016-07-21 22:47:35 +0300 |
commit | a2bc6f3bfd35c9785b8b3bb1a788587f298edef6 (patch) | |
tree | 3e36293102f4fae4fac864fced569de8717d73ea /sway/workspace.c | |
parent | 464239f7ac11d32a6f10b8517b8410a2eb9b493a (diff) |
Arrange backgrounds only when required
Diffstat (limited to 'sway/workspace.c')
-rw-r--r-- | sway/workspace.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/workspace.c b/sway/workspace.c index 913a412c..9c3e69a9 100644 --- a/sway/workspace.c +++ b/sway/workspace.c @@ -308,6 +308,7 @@ bool workspace_switch(swayc_t *workspace) { return false; } swayc_t *output = swayc_parent_by_type(workspace, C_OUTPUT); + arrange_backgrounds(); arrange_windows(output, -1, -1); return true; } |