fix border size on scaled outputs

This commit is contained in:
vaxerski 2022-05-31 20:38:45 +02:00
parent 0f8712ed64
commit 679e36d82e
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ void CHyprOpenGLImpl::renderBorder(wlr_box* box, const CColor& col, int thick, i
box->width += 2 * thick;
box->height += 2 * thick;
round += thick; // cuz yeah
round += thick * m_RenderData.pMonitor->scale; // cuz yeah
// only draw on non-stencild.
glStencilFunc(GL_NOTEQUAL, 1, -1);