summaryrefslogtreecommitdiff
path: root/output_layout.c
diff options
context:
space:
mode:
authorAlexander Orzechowski <[email protected]>2022-05-30 19:26:08 -0400
committerIsaac Freund <[email protected]>2022-05-31 09:14:28 +0000
commit6975c82d95080589882b71083f67dc905e5a7f80 (patch)
tree79587ead6b5430f8676874e6f8bb09f1cbb474da /output_layout.c
parentc7cc2125a642a21cea6a8098208dd147473f321a (diff)
wlr_scene: Refactor wlr_scene (the root element) to encase a wlr_scene_tree
Co-authored-by: Isaac Freund <[email protected]>
Diffstat (limited to 'output_layout.c')
-rw-r--r--output_layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/output_layout.c b/output_layout.c
index b80759f..e2327eb 100644
--- a/output_layout.c
+++ b/output_layout.c
@@ -99,7 +99,7 @@ bool wlr_scene_attach_output_layout(struct wlr_scene *scene,
wl_signal_add(&output_layout->events.add, &sol->layout_add);
sol->scene_destroy.notify = scene_output_layout_handle_scene_destroy;
- wl_signal_add(&scene->node.events.destroy, &sol->scene_destroy);
+ wl_signal_add(&scene->tree.node.events.destroy, &sol->scene_destroy);
return true;
}