commit 41b5c6d1a9e19ecb0ee0eaeefa4c1ed278de760f
parent e8ca63702ef370d968cc3bc3a420698ee13c876e
Author: D.B <thejan.2009@gmail.com>
Date: Sun, 7 Aug 2016 17:32:18 +0200
Sort workspaces when moving workspace to output
This should fix #839
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/sway/layout.c b/sway/layout.c
@@ -363,6 +363,7 @@ void move_workspace_to(swayc_t* workspace, swayc_t* destination) {
// reset container geometry
workspace->width = workspace->height = 0;
add_child(destination, workspace);
+ sort_workspaces(destination);
// Refocus destination (change to new workspace)
set_focused_container(get_focused_view(workspace));
arrange_windows(destination, -1, -1);