aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2023-08-08 20:26:56 +0200
committervaxerski <[email protected]>2023-08-08 20:26:56 +0200
commitff9ddccf1c613d3cf2890fe5bf29ed9aa1601359 (patch)
tree54162eb78068ed32bbdcf05db3395cf76bc3278a
parentff3fdf1e8cb6c6583425221cc8f34776e81dd571 (diff)
downloadHyprland-damage-ring.tar.gz
Hyprland-damage-ring.zip
fix crash in opaquedamage-ring
-rw-r--r--src/Window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cpp b/src/Window.cpp
index f48d27f1..d66e6ebe 100644
--- a/src/Window.cpp
+++ b/src/Window.cpp
@@ -766,7 +766,7 @@ bool CWindow::opaque() {
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(m_iWorkspaceID);
- if (PWORKSPACE->m_fAlpha.fl() != 1.f)
+ if (PWORKSPACE && PWORKSPACE->m_fAlpha.fl() != 1.f)
return false;
if (m_bIsX11)