diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-29 23:34:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 23:34:14 -0400 |
commit | 472e81f35d689d67cda241acafda91c688d61046 (patch) | |
tree | b8b52173a9791e3b13a0316ab9d316a80a6adc20 /sway/config | |
parent | 6b7841b11ff4cd35f54d69dc92029855893e5ce0 (diff) | |
parent | d0c7f66e950689b70196a890b62b82ff3c66e103 (diff) |
Merge pull request #1653 from swaywm/revert-1647-refactor-tree
Revert "Refactor tree"
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/config/output.c b/sway/config/output.c index 7fc79739..9e211861 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -120,14 +120,14 @@ void terminate_swaybg(pid_t pid) { } } -void apply_output_config(struct output_config *oc, struct sway_container *output) { +void apply_output_config(struct output_config *oc, swayc_t *output) { assert(output->type == C_OUTPUT); struct wlr_output *wlr_output = output->sway_output->wlr_output; if (oc && oc->enabled == 0) { wlr_output_layout_remove(root_container.sway_root->output_layout, wlr_output); - container_output_destroy(output); + destroy_output(output); return; } |