diff options
author | trianta <[email protected]> | 2024-08-25 09:37:03 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-25 16:37:03 +0200 |
commit | b672118f9238a48a18efd741cbcda387c5552238 (patch) | |
tree | 80e02da0c9ecc419c54ee12d5b3939d1516527eb /src/xwayland | |
parent | aac90d92797825a65b9faab038586a3b88448667 (diff) | |
download | Hyprland-b672118f9238a48a18efd741cbcda387c5552238.tar.gz Hyprland-b672118f9238a48a18efd741cbcda387c5552238.zip |
xwayland: deactivate xwayland focus if wayland is focused (#7458)
* xwayland: deactivate xwayland focus if wayland is focused
* xwayland: deactivate last xwayland surface after focusing wayland
Diffstat (limited to 'src/xwayland')
-rw-r--r-- | src/xwayland/XWM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xwayland/XWM.cpp b/src/xwayland/XWM.cpp index f6b6864c..a409b440 100644 --- a/src/xwayland/XWM.cpp +++ b/src/xwayland/XWM.cpp @@ -897,7 +897,7 @@ void CXWM::activateSurface(SP<CXWaylandSurface> surf, bool activate) { if ((surf == focusedSurface && activate) || (surf && surf->overrideRedirect)) return; - if (!surf) { + if (!surf || (!activate && g_pCompositor->m_pLastWindow && !g_pCompositor->m_pLastWindow->m_bIsX11)) { setActiveWindow((uint32_t)XCB_WINDOW_NONE); focusWindow(nullptr); } else { |