render: plug missing software cursor unlocks

This commit is contained in:
vaxerski 2023-04-04 00:46:52 +01:00
parent bab949599f
commit 99314fbe71

View file

@ -826,6 +826,10 @@ void CHyprRenderer::renderMonitor(CMonitor* pMonitor) {
if (!wlr_output_damage_attach_render(pMonitor->damage, &hasChanged, &damage)) {
Debug::log(ERR, "Couldn't attach render to display %s ???", pMonitor->szName.c_str());
if (UNLOCK_SC)
wlr_output_lock_software_cursors(pMonitor->output, false);
return;
}
@ -843,6 +847,9 @@ void CHyprRenderer::renderMonitor(CMonitor* pMonitor) {
pMonitor->renderingActive = false;
if (UNLOCK_SC)
wlr_output_lock_software_cursors(pMonitor->output, false);
return;
}