aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/workspace.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 23:15:39 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 23:15:39 -0400
commit2778edef976a669dd0019ebb5327bcfeb4de13c5 (patch)
tree6d9c1cecaa845590025f8354047e2986c3301092 /sway/tree/workspace.c
parentrename container_for_each_descendent (diff)
downloadsway-2778edef976a669dd0019ebb5327bcfeb4de13c5.tar.gz
sway-2778edef976a669dd0019ebb5327bcfeb4de13c5.tar.zst
sway-2778edef976a669dd0019ebb5327bcfeb4de13c5.zip
arrange windows
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r--sway/tree/workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 369cf14c..ba04c55c 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -247,6 +247,6 @@ bool workspace_switch(struct sway_container *workspace) {
247 } 247 }
248 sway_seat_set_focus(seat, next); 248 sway_seat_set_focus(seat, next);
249 struct sway_container *output = container_parent(workspace, C_OUTPUT); 249 struct sway_container *output = container_parent(workspace, C_OUTPUT);
250 container_arrange_windows(output, -1, -1); 250 arrange_windows(output, -1, -1);
251 return true; 251 return true;
252} 252}