diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index 3c010979..551212ad 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -736,7 +736,7 @@ void CHyprOpenGLImpl::makeWindowSnapshot(CWindow* pWindow) { // this is temporary, doesnt mess with the actual wlr damage pixman_region32_t fakeDamage; pixman_region32_init(&fakeDamage); - pixman_region32_union_rect(&fakeDamage, &fakeDamage, 0, 0, (int)PMONITOR->vecSize.x, (int)PMONITOR->vecSize.y); + pixman_region32_union_rect(&fakeDamage, &fakeDamage, 0, 0, (int)PMONITOR->vecTransformedSize.x, (int)PMONITOR->vecTransformedSize.y); begin(PMONITOR, &fakeDamage, true);