fix crash with fullscreen requests

This commit is contained in:
Vaxry 2022-08-14 16:34:40 +02:00
parent bfe0f844d2
commit 920727cbba

View file

@ -1411,6 +1411,10 @@ void CCompositor::setWindowFullscreen(CWindow* pWindow, bool on, eFullscreenMode
if (!windowValidMapped(pWindow))
return;
if (!isWorkspaceVisible(pWindow->m_iWorkspaceID)) {
g_pKeybindManager->changeworkspace("[internal]" + std::to_string(pWindow->m_iWorkspaceID));
}
g_pLayoutManager->getCurrentLayout()->fullscreenRequestForWindow(pWindow, mode, on);
g_pXWaylandManager->setWindowFullscreen(pWindow, pWindow->m_bIsFullscreen && mode == FULLSCREEN_FULL);