mirror of
https://github.com/Trensa-Organization/Hyprland.git
synced 2025-03-16 03:03:40 +01:00
parent
2ce4b94a22
commit
3fe6162af1
1 changed files with 8 additions and 1 deletions
|
@ -130,8 +130,15 @@ bool CHyprOpenGLImpl::passRequiresIntrospection(CMonitor* pMonitor) {
|
||||||
if (pMonitor->solitaryClient)
|
if (pMonitor->solitaryClient)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
for (auto& ls : pMonitor->m_aLayerSurfaceLayers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY]) {
|
||||||
|
const auto XRAYMODE = ls->xray == -1 ? *PXRAY : ls->xray;
|
||||||
|
if (ls->forceBlur && !XRAYMODE)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
for (auto& ls : pMonitor->m_aLayerSurfaceLayers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]) {
|
for (auto& ls : pMonitor->m_aLayerSurfaceLayers[ZWLR_LAYER_SHELL_V1_LAYER_TOP]) {
|
||||||
if (ls->forceBlur && !ls->xray)
|
const auto XRAYMODE = ls->xray == -1 ? *PXRAY : ls->xray;
|
||||||
|
if (ls->forceBlur && !XRAYMODE)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue