From 2bbc6c35b0856559d1aea26398c2792d73cab998 Mon Sep 17 00:00:00 2001 From: Brian Ashworth Date: Wed, 20 Feb 2019 14:08:20 -0500 Subject: output_evacuate: call workspace_consider_destroy This calls `workspace_consider_destroy` on the workspace that was visible on an output that a workspace was just evacuated to. This prevents having hidden empty workspaces. --- sway/tree/output.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sway/tree/output.c b/sway/tree/output.c index 60e0af9f..146bc423 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -189,10 +189,19 @@ static void output_evacuate(struct sway_output *output) { continue; } + struct sway_workspace *new_output_ws = + output_get_active_workspace(new_output); + workspace_output_add_priority(workspace, new_output); output_add_workspace(new_output, workspace); output_sort_workspaces(new_output); ipc_event_workspace(NULL, workspace, "move"); + + // If there is an old workspace (the noop output may not have one), + // check to see if it is empty and should be destroyed. + if (new_output_ws) { + workspace_consider_destroy(new_output_ws); + } } } -- cgit v1.2.3-54-g00ecf