aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVaxry <[email protected]>2023-11-26 16:42:04 +0000
committerVaxry <[email protected]>2023-11-26 16:42:04 +0000
commitadeb20ea114ff56d78804697e9ba8328f684b7b1 (patch)
tree117bd408dbef77c4d555b56dd8b520a79b594401
parent68e57b7ee36f015d99988f38cb3a8b83c23ae7c3 (diff)
downloadHyprland-adeb20ea114ff56d78804697e9ba8328f684b7b1.tar.gz
Hyprland-adeb20ea114ff56d78804697e9ba8328f684b7b1.zip
opengl: tiled special require introspection
-rw-r--r--src/render/OpenGL.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp
index f2cec5df..abb4a7d2 100644
--- a/src/render/OpenGL.cpp
+++ b/src/render/OpenGL.cpp
@@ -160,7 +160,7 @@ bool CHyprOpenGLImpl::passRequiresIntrospection(CMonitor* pMonitor) {
return false;
for (auto& w : g_pCompositor->m_vWindows) {
- if (!w->m_bIsMapped || w->isHidden() || (!w->m_bIsFloating && *POPTIM))
+ if (!w->m_bIsMapped || w->isHidden() || (!w->m_bIsFloating && *POPTIM && !g_pCompositor->isWorkspaceSpecial(w->m_iWorkspaceID)))
continue;
if (!g_pHyprRenderer->shouldRenderWindow(w.get()))