@@ -2627,7 +2627,13 @@ PHLWORKSPACE CCompositor::createNewWorkspace(const WORKSPACEID& id, const MONITO
2627
2627
2628
2628
const bool SPECIAL = id >= SPECIAL_WORKSPACE_START && id <= -2 ;
2629
2629
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));
2631
2637
2632
2638
PWORKSPACE->m_fAlpha ->setValueAndWarp (0 );
2633
2639
@@ -3061,6 +3067,8 @@ bool CCompositor::shouldChangePreferredImageDescription() {
3061
3067
}
3062
3068
3063
3069
void CCompositor::ensurePersistentWorkspacesPresent (const std::vector<SWorkspaceRule>& rules, PHLWORKSPACE pWorkspace) {
3070
+ if (!m_pLastMonitor)
3071
+ return ;
3064
3072
3065
3073
for (const auto & rule : rules) {
3066
3074
if (!rule.isPersistent )
@@ -3076,6 +3084,9 @@ void CCompositor::ensurePersistentWorkspacesPresent(const std::vector<SWorkspace
3076
3084
3077
3085
const auto PMONITOR = getMonitorFromString (rule.monitor );
3078
3086
3087
+ if (!rule.monitor .empty () && !PMONITOR)
3088
+ continue ; // don't do anything yet, as the monitor is not yet present.
3089
+
3079
3090
if (!PWORKSPACE) {
3080
3091
WORKSPACEID id = rule.workspaceId ;
3081
3092
std::string wsname = rule.workspaceName ;
@@ -3092,7 +3103,7 @@ void CCompositor::ensurePersistentWorkspacesPresent(const std::vector<SWorkspace
3092
3103
}
3093
3104
PWORKSPACE = getWorkspaceByID (id);
3094
3105
if (!PWORKSPACE)
3095
- createNewWorkspace (id, PMONITOR ? PMONITOR : m_pLastMonitor. lock () , wsname, false );
3106
+ createNewWorkspace (id, PMONITOR ? PMONITOR-> ID : m_pLastMonitor-> ID , wsname, false );
3096
3107
}
3097
3108
3098
3109
if (PWORKSPACE)
0 commit comments