aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/output.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c
index 138144a7..60e0af9f 100644
--- a/sway/tree/output.c
+++ b/sway/tree/output.c
@@ -233,9 +233,8 @@ void output_disable(struct sway_output *output) {
root_for_each_container(untrack_output, output);
- if (output->bg_pid) {
- terminate_swaybg(output->bg_pid);
- output->bg_pid = 0;
+ if (output->swaybg_client != NULL) {
+ wl_client_destroy(output->swaybg_client);
}
int index = list_find(root->outputs, output);