xwayland: allow initial focus to dialogs

This commit is contained in:
vaxerski 2023-05-02 14:44:16 +01:00
parent 609c7ab6b5
commit cde7f79af0
1 changed files with 3 additions and 1 deletions

View File

@ -184,7 +184,9 @@ bool CHyprXWaylandManager::shouldBeFloated(CWindow* pWindow) {
pWindow->m_uSurface.xwayland->window_type[i] == HYPRATOMS["_NET_WM_WINDOW_TYPE_MENU"])
pWindow->m_bX11ShouldntFocus = true;
pWindow->m_bNoInitialFocus = true;
if (pWindow->m_uSurface.xwayland->window_type[i] != HYPRATOMS["_NET_WM_WINDOW_TYPE_DIALOG"])
pWindow->m_bNoInitialFocus = true;
return true;
}