aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-02-20 14:08:20 -0500
committeremersion <contact@emersion.fr>2019-02-20 20:17:45 +0100
commit546b976baa9989676c2fb2aff8c36f42b3d19810 (patch)
tree679da80a1cdfb51fc27593282cc4ed22ebe1b007
parentb57761e833f0198d2bd9ac95b1926cc5b08d6ac3 (diff)
downloadsway-546b976baa9989676c2fb2aff8c36f42b3d19810.zip
sway-546b976baa9989676c2fb2aff8c36f42b3d19810.tar.gz
sway-546b976baa9989676c2fb2aff8c36f42b3d19810.tar.bz2
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.
-rw-r--r--sway/tree/output.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c
index 60e0af9..146bc42 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);
+ }
}
}