aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/output.c')
-rw-r--r--sway/tree/output.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c
index 6ff95579..95ab9378 100644
--- a/sway/tree/output.c
+++ b/sway/tree/output.c
@@ -225,6 +225,11 @@ void output_disable(struct sway_output *output) {
225 225
226 root_for_each_container(untrack_output, output); 226 root_for_each_container(untrack_output, output);
227 227
228 if (output->bg_pid) {
229 terminate_swaybg(output->bg_pid);
230 output->bg_pid = 0;
231 }
232
228 int index = list_find(root->outputs, output); 233 int index = list_find(root->outputs, output);
229 list_del(root->outputs, index); 234 list_del(root->outputs, index);
230 235