diff options
author | Vaxry <[email protected]> | 2023-12-06 14:46:18 +0000 |
---|---|---|
committer | Vaxry <[email protected]> | 2023-12-06 14:46:29 +0000 |
commit | 03c6f4506ab06d2920c59b3c64f45cb4eec8c97a (patch) | |
tree | 72aff88f74f89729f17e902e01eb488cb1eb1f0c /src/Compositor.cpp | |
parent | 13b4c6de869b782ae18a0e8ac7c590e8000cc1c2 (diff) | |
download | Hyprland-03c6f4506ab06d2920c59b3c64f45cb4eec8c97a.tar.gz Hyprland-03c6f4506ab06d2920c59b3c64f45cb4eec8c97a.zip |
internal: various improvements to avoid crashes on exit
Diffstat (limited to 'src/Compositor.cpp')
-rw-r--r-- | src/Compositor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Compositor.cpp b/src/Compositor.cpp index 9419583e..98f51204 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -339,7 +339,8 @@ void CCompositor::cleanup() { removeLockFile(); - m_bIsShuttingDown = true; + m_bIsShuttingDown = true; + Debug::shuttingDown = true; #ifdef USES_SYSTEMD if (sd_booted() > 0) |