diff options
author | Kirill Primak <[email protected]> | 2022-04-14 09:26:54 +0300 |
---|---|---|
committer | Simon Ser <[email protected]> | 2022-04-14 06:51:39 +0000 |
commit | fcbdeee3bf0e78fd538a27654edaf5497c8892f7 (patch) | |
tree | bb2a29e8cba9be4c64723fb6ba87f6a419dca7a6 | |
parent | 339ef8dbd92c21c8d807024b875fc0887666430f (diff) |
scene/output-layout: fix scene destroy handler
-rw-r--r-- | output_layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/output_layout.c b/output_layout.c index 33dac13..b80759f 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(&output_layout->events.destroy, &sol->scene_destroy); + wl_signal_add(&scene->node.events.destroy, &sol->scene_destroy); return true; } |