compositor: reject focus to noFocus OR xwayland windows

fixes #4922
This commit is contained in:
Vaxry 2024-03-09 22:39:23 +00:00
parent 2ed032a7fd
commit b0f98a3d3e

View file

@ -930,6 +930,9 @@ void CCompositor::focusWindow(CWindow* pWindow, wlr_surface* pSurface) {
return;
}
if (pWindow && pWindow->m_bIsX11 && pWindow->m_iX11Type == 2 && !wlr_xwayland_or_surface_wants_focus(pWindow->m_uSurface.xwayland))
return;
g_pLayoutManager->getCurrentLayout()->bringWindowToTop(pWindow);
if (!pWindow || !windowValidMapped(pWindow)) {