renderer: remove border on fullscreen (#5577)

modified:   src/render/Renderer.cpp
This commit is contained in:
MightyPlaza 2024-04-13 23:16:26 +00:00 committed by GitHub
parent 61fe47189b
commit 0634aaeac6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -550,7 +550,7 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, CMonitor* pMonitor, timespec*
}
}
if (decorate) {
if (renderdata.decorate) {
for (auto& wd : pWindow->m_dWindowDecorations) {
if (wd->getDecorationLayer() != DECORATION_LAYER_BOTTOM)
continue;
@ -582,7 +582,7 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, CMonitor* pMonitor, timespec*
g_pHyprOpenGL->m_RenderData.useNearestNeighbor = false;
if (decorate) {
if (renderdata.decorate) {
for (auto& wd : pWindow->m_dWindowDecorations) {
if (wd->getDecorationLayer() != DECORATION_LAYER_OVER)
continue;