mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-17 06:06:01 +01:00
parent
98e99cd03d
commit
9642311ac2
1 changed files with 5 additions and 0 deletions
|
@ -1307,6 +1307,11 @@ void CWindow::activate(bool force) {
|
||||||
if (!force && (!m_sWindowData.focusOnActivate.valueOr(*PFOCUSONACTIVATE) || (m_eSuppressedEvents & SUPPRESS_ACTIVATE_FOCUSONLY) || (m_eSuppressedEvents & SUPPRESS_ACTIVATE)))
|
if (!force && (!m_sWindowData.focusOnActivate.valueOr(*PFOCUSONACTIVATE) || (m_eSuppressedEvents & SUPPRESS_ACTIVATE_FOCUSONLY) || (m_eSuppressedEvents & SUPPRESS_ACTIVATE)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (!m_bIsMapped) {
|
||||||
|
Debug::log(LOG, "Ignoring CWindow::activate focus/warp, window is not mapped yet.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (m_bIsFloating)
|
if (m_bIsFloating)
|
||||||
g_pCompositor->changeWindowZOrder(m_pSelf.lock(), true);
|
g_pCompositor->changeWindowZOrder(m_pSelf.lock(), true);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue