fix accidental subsurface reinclusion
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoIxD 2026-09-13 00:20:08 -07:00
commit d5e6847334
2 changed files with 1 additions and 7 deletions

View file

@ -239,9 +239,7 @@ struct _MwLLWaylandTopLevel {
};
struct _MwLLWaylandSublevel {
MwLL parent;
struct wl_subcompositor* subcompositor;
struct wl_subsurface* subsurface;
MwLL parent;
struct xdg_surface* xdg_surface;
};

View file

@ -1178,8 +1178,6 @@ static wayland_protocol_t* wl_subcompositor_setup(MwU32 name, struct _MwLLWaylan
(void)version;
if(wayland->type == MwLL_WAYLAND_TOPLEVEL) {
wayland->toplevel->scompositor = wl_registry_bind(wayland->registry, name, &wl_subcompositor_interface, 1);
} else {
wayland->sublevel->subcompositor = wl_registry_bind(wayland->registry, name, &wl_subcompositor_interface, 1);
}
return NULL;
@ -1189,8 +1187,6 @@ static void wl_subcompositor_interface_destroy(struct _MwLLWayland* wayland, way
(void)data;
if(wayland->type == MwLL_WAYLAND_TOPLEVEL) {
wl_subcompositor_destroy(wayland->toplevel->scompositor);
} else {
wl_subcompositor_destroy(wayland->sublevel->subcompositor);
}
}