mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 21:05:58 +01:00
Fix one more SIGSEGV while exiting
This commit is contained in:
parent
2cd5059cf1
commit
f06d4fca27
1 changed files with 6 additions and 0 deletions
|
@ -144,6 +144,9 @@ void CCompositor::cleanupExit() {
|
|||
if (!m_sWLDisplay)
|
||||
return;
|
||||
|
||||
m_pLastFocus = nullptr;
|
||||
m_pLastWindow = nullptr;
|
||||
|
||||
m_lWorkspaces.clear();
|
||||
m_lWindows.clear();
|
||||
|
||||
|
@ -620,6 +623,9 @@ bool CCompositor::doesSeatAcceptInput(wlr_surface* surface) {
|
|||
}
|
||||
|
||||
bool CCompositor::isWindowActive(CWindow* pWindow) {
|
||||
if (!m_pLastWindow && !m_pLastFocus)
|
||||
return false;
|
||||
|
||||
if (!windowValidMapped(pWindow))
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue