diff options
author | MightyPlaza <[email protected]> | 2024-07-13 18:29:07 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-13 20:29:07 +0200 |
commit | ed6c701144b827869e0c0fca7a7849ec251bf9ef (patch) | |
tree | 0910bdc67cddfbdf92c208107dbb388f99bf339d /src/render | |
parent | 45c48984236d7a682a1941b147f8ae489ac9a1e6 (diff) | |
download | Hyprland-ed6c701144b827869e0c0fca7a7849ec251bf9ef.tar.gz Hyprland-ed6c701144b827869e0c0fca7a7849ec251bf9ef.zip |
renderer: partially revert previous xray fix (#6868)
modified: src/render/OpenGL.cpp
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/OpenGL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index 2556fafc..cb3d2e71 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -434,7 +434,7 @@ bool CHyprOpenGLImpl::passRequiresIntrospection(CMonitor* pMonitor) { if (!w->m_bIsFloating && *POPTIM && !w->onSpecialWorkspace()) continue; - if (w->m_sWindowData.noBlur.valueOrDefault() || !w->m_sWindowData.xray.hasValue() || w->m_sWindowData.xray.valueOrDefault()) + if (w->m_sWindowData.noBlur.valueOrDefault() || w->m_sWindowData.xray.valueOrDefault()) continue; if (w->opaque()) |