wayland: apply full region to 1st-level children
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoIxD 2026-05-05 19:19:58 -07:00
commit ee5e04c64e

View file

@ -26,6 +26,11 @@ void MwLLWaylandRegionSetup(MwLL handle) {
if(!handle->wayland.parent)
wl_region_add(handle->wayland.region, 0, 0, width, height);
else {
if(!handle->wayland.parent->wayland.parent) {
wl_region_add(handle->wayland.region, 0, 0, width, height);
}
}
}
if(handle->wayland.type == MwLL_WAYLAND_TOPLEVEL) {