mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 15:45:59 +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())
|
||||
break;
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
if ((*it)->m_iID == SPECIAL_WORKSPACE_ID && WINDOWSONWORKSPACE == 0) {
|
||||
|
@ -721,6 +723,8 @@ void CCompositor::sanityCheckWorkspaces() {
|
|||
|
||||
if (it == m_vWorkspaces.end())
|
||||
break;
|
||||
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue