workspace: remove monitor and visible flags on inert

This commit is contained in:
Vaxry 2024-04-05 16:57:46 +01:00
parent 0051b078a1
commit f815a33f64

View File

@ -411,8 +411,10 @@ bool CWorkspace::matchesStaticSelector(const std::string& selector_) {
}
void CWorkspace::markInert() {
m_bInert = true;
m_iID = WORKSPACE_INVALID;
m_bInert = true;
m_iID = WORKSPACE_INVALID;
m_iMonitorID = -1;
m_bVisible = false;
}
bool CWorkspace::inert() {