commit f12023b1a26e30b7c041551a4713ab81014d138d
parent 2cd73a33c26ea6510a2f50359b1c550cd9b4fead
Author: Alexander Orzechowski <alex@ozal.ski>
Date: Thu, 30 Nov 2023 19:53:14 -0500
Don't destroy output layout on exit
wlroots will destroy this object itself.
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/sway/tree/root.c b/sway/tree/root.c
@@ -53,7 +53,6 @@ void root_destroy(struct sway_root *root) {
list_free(root->scratchpad);
list_free(root->non_desktop_outputs);
list_free(root->outputs);
- wlr_output_layout_destroy(root->output_layout);
free(root);
}