From 027f29023c5af1e43052fbcb79299a3bd217474c Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Sun, 20 Mar 2022 19:27:47 +0100 Subject: [PATCH] fix the last xwayland fix because it didnt fully fix --- src/managers/KeybindManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 2dedf22c..20fa46d8 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -130,6 +130,10 @@ void CKeybindManager::changeworkspace(std::string args) { // Workspace doesn't exist, create and switch const auto PMONITOR = g_pCompositor->getMonitorFromCursor(); + // we need to move XWayland windows to narnia or otherwise they will still process our cursor and shit + // and that'd be annoying as hell + g_pCompositor->fixXWaylandWindowsOnWorkspace(PMONITOR->activeWorkspace); + g_pCompositor->m_lWorkspaces.push_back(SWorkspace()); const auto PWORKSPACE = &g_pCompositor->m_lWorkspaces.back();