Skip to content

Commit 5380cbc

Browse files
committed
workspaces: minor fixes to persistence
fixes #9741
1 parent 9ea7642 commit 5380cbc

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

src/Compositor.cpp

+13-2
Original file line numberDiff line numberDiff line change
@@ -2627,7 +2627,13 @@ PHLWORKSPACE CCompositor::createNewWorkspace(const WORKSPACEID& id, const MONITO
26272627

26282628
const bool SPECIAL = id >= SPECIAL_WORKSPACE_START && id <= -2;
26292629

2630-
const auto PWORKSPACE = m_vWorkspaces.emplace_back(CWorkspace::create(id, getMonitorFromID(monID), NAME, SPECIAL, isEmpty));
2630+
const auto PMONITOR = getMonitorFromID(monID);
2631+
if (!PMONITOR) {
2632+
Debug::log(ERR, "BUG THIS: No pMonitor for new workspace in createNewWorkspace");
2633+
return nullptr;
2634+
}
2635+
2636+
const auto PWORKSPACE = m_vWorkspaces.emplace_back(CWorkspace::create(id, PMONITOR, NAME, SPECIAL, isEmpty));
26312637

26322638
PWORKSPACE->m_fAlpha->setValueAndWarp(0);
26332639

@@ -3061,6 +3067,8 @@ bool CCompositor::shouldChangePreferredImageDescription() {
30613067
}
30623068

30633069
void CCompositor::ensurePersistentWorkspacesPresent(const std::vector<SWorkspaceRule>& rules, PHLWORKSPACE pWorkspace) {
3070+
if (!m_pLastMonitor)
3071+
return;
30643072

30653073
for (const auto& rule : rules) {
30663074
if (!rule.isPersistent)
@@ -3076,6 +3084,9 @@ void CCompositor::ensurePersistentWorkspacesPresent(const std::vector<SWorkspace
30763084

30773085
const auto PMONITOR = getMonitorFromString(rule.monitor);
30783086

3087+
if (!rule.monitor.empty() && !PMONITOR)
3088+
continue; // don't do anything yet, as the monitor is not yet present.
3089+
30793090
if (!PWORKSPACE) {
30803091
WORKSPACEID id = rule.workspaceId;
30813092
std::string wsname = rule.workspaceName;
@@ -3092,7 +3103,7 @@ void CCompositor::ensurePersistentWorkspacesPresent(const std::vector<SWorkspace
30923103
}
30933104
PWORKSPACE = getWorkspaceByID(id);
30943105
if (!PWORKSPACE)
3095-
createNewWorkspace(id, PMONITOR ? PMONITOR : m_pLastMonitor.lock(), wsname, false);
3106+
createNewWorkspace(id, PMONITOR ? PMONITOR->ID : m_pLastMonitor->ID, wsname, false);
30963107
}
30973108

30983109
if (PWORKSPACE)

0 commit comments

Comments
 (0)