session: fix activate events being always treated as on (#6696)

* Fix listener_sessionActive to handle an event correctly when the session get inactivated

* Remove log
This commit is contained in:
はれなよ
2024-06-30 03:04:48 +09:00
committed by GitHub
parent 9c5dd59d4b
commit 1f43a5c859
2 changed files with 19 additions and 19 deletions

View File

@@ -810,18 +810,7 @@ bool CKeybindManager::handleVT(xkb_keysym_t keysym) {
Debug::log(LOG, "Switching from VT {} to VT {}", ttynum, TTY);
if (!wlr_session_change_vt(g_pCompositor->m_sWLRSession, TTY))
return true; // probably same session
g_pCompositor->m_bSessionActive = false;
for (auto& m : g_pCompositor->m_vMonitors) {
m->noFrameSchedule = true;
m->framesToSkip = 1;
}
Debug::log(LOG, "Switched to VT {}, destroyed all render data, frames to skip for each: 2", TTY);
wlr_session_change_vt(g_pCompositor->m_sWLRSession, TTY);
return true;
}