layersurface: round geom in arrangeLayerArray

fixes #8171
This commit is contained in:
Vaxry 2024-10-19 23:45:51 +01:00
parent f044e4c951
commit 6a5c342063

View file

@ -1742,7 +1742,9 @@ void CHyprRenderer::arrangeLayerArray(PHLMONITOR pMonitor, const std::vector<PHL
Debug::log(ERR, "LayerSurface {:x} has a negative/zero w/h???", (uintptr_t)ls.get());
continue;
}
// Apply
box.round(); // fix rounding errors
ls->geometry = box;
applyExclusive(*usableArea, PSTATE->anchor, PSTATE->exclusive, PSTATE->exclusiveEdge, PSTATE->margin.top, PSTATE->margin.right, PSTATE->margin.bottom, PSTATE->margin.left);