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

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