allow focus to grouped windows

This commit is contained in:
vaxerski
2023-02-28 12:34:59 +00:00
parent 49f423aa8f
commit ac251d7a66
2 changed files with 6 additions and 1 deletions

View File

@@ -2050,7 +2050,7 @@ CWindow* CCompositor::getWindowByRegex(const std::string& regexp) {
}
for (auto& w : g_pCompositor->m_vWindows) {
if (!w->m_bIsMapped || w->isHidden())
if (!w->m_bIsMapped || (w->isHidden() && !w->m_sGroupData.pNextWindow))
continue;
switch (mode) {