sway

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

commit 9e37a13d7b8688039184f8d7d9c67882f2e8e6c7
parent e8ca63702ef370d968cc3bc3a420698ee13c876e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  7 Aug 2016 12:04:03 -0400

Merge pull request #842 from thejan2009/bug/move-workspace-sort-output

Sort workspaces when moving workspace to output
Diffstat:
Msway/layout.c | 1+
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);