prevent assert killing Hyprland after reenabling monitor

This commit is contained in:
tomahk 2022-09-19 20:44:33 +02:00
parent 3780361b95
commit 73e19aee6f
1 changed files with 3 additions and 1 deletions

View File

@ -65,6 +65,8 @@ void CMonitor::onConnect(bool noRule) {
}
if (!m_bRenderingInitPassed) {
output->allocator = NULL;
output->renderer = NULL;
wlr_output_init_render(output, g_pCompositor->m_sWLRAllocator, g_pCompositor->m_sWLRRenderer);
m_bRenderingInitPassed = true;
}
@ -356,4 +358,4 @@ void CMonitor::setMirror(const std::string& mirrorOf) {
g_pCompositor->m_pLastMonitor = g_pCompositor->m_vMonitors.front().get();
}
}
}