window: check for special id matching in close_special_on_empty

This commit is contained in:
vaxerski 2023-09-03 13:02:05 +02:00
parent 5e0cf7d6a5
commit e6ca4b6eee

View File

@ -410,7 +410,7 @@ void CWindow::onUnmap() {
if (*PCLOSEONLASTSPECIAL && g_pCompositor->getWindowsOnWorkspace(m_iWorkspaceID) == 0 && g_pCompositor->isWorkspaceSpecial(m_iWorkspaceID)) {
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID);
if (PMONITOR)
if (PMONITOR && PMONITOR->specialWorkspaceID == m_iWorkspaceID)
PMONITOR->setSpecialWorkspace(nullptr);
}
}