mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 21:45:58 +01:00
I am an idiot, fixed special ws deletion
This commit is contained in:
parent
3bf172a37e
commit
05736bc1e3
1 changed files with 4 additions and 0 deletions
|
@ -710,6 +710,8 @@ void CCompositor::sanityCheckWorkspaces() {
|
||||||
|
|
||||||
if (it == m_vWorkspaces.end())
|
if (it == m_vWorkspaces.end())
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((*it)->m_iID == SPECIAL_WORKSPACE_ID && WINDOWSONWORKSPACE == 0) {
|
if ((*it)->m_iID == SPECIAL_WORKSPACE_ID && WINDOWSONWORKSPACE == 0) {
|
||||||
|
@ -721,6 +723,8 @@ void CCompositor::sanityCheckWorkspaces() {
|
||||||
|
|
||||||
if (it == m_vWorkspaces.end())
|
if (it == m_vWorkspaces.end())
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue