don't iterate over subsurfaces in unmap

This commit is contained in:
vaxerski 2022-09-13 15:44:50 +02:00
parent d8dbe26f31
commit e518adf1ac
1 changed files with 3 additions and 5 deletions

View File

@ -170,12 +170,10 @@ void Events::listener_unmapSubsurface(void* owner, void* data) {
int lx = 0, ly = 0;
addSurfaceGlobalOffset(PNODE, &lx, &ly);
wlr_box extents = {0};
wlr_box extents = {lx, ly, 0, 0};
if (PNODE->pSurface) {
wlr_surface_get_extends(PNODE->pSurface, &extents);
extents.x += lx;
extents.y += ly;
extents.width = PNODE->pSurface->current.width;
extents.height = PNODE->pSurface->current.height;
g_pHyprRenderer->damageBox(&extents);
}