fixed panels showing up

This commit is contained in:
rozodru 2025-07-19 18:36:46 -04:00
parent ef21c58f31
commit 8868b1fee0
2 changed files with 2 additions and 1 deletions

View File

@ -371,4 +371,4 @@ void nedm_arrange_layers(struct nedm_output *output) {
arrange_layer(output, 2, &full_area, &usable_area, false); // TOP
arrange_layer(output, 1, &full_area, &usable_area, false); // BOTTOM
arrange_layer(output, 0, &full_area, &usable_area, false); // BACKGROUND
}
}

View File

@ -678,6 +678,7 @@ handle_new_output(struct wl_listener *listener, void *data) {
output->layers[3] = wlr_scene_tree_create(&output->scene_output->scene->tree); // ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY
output->wlr_output = wlr_output;
wlr_output->data = output;
output->destroyed = false;
output->wallpaper = NULL;
wl_signal_init(&output->events.destroy);