From 664827473583f8e986f9fb2a37a13e9b3a232cc2 Mon Sep 17 00:00:00 2001 From: memchr <118117622+memchr@users.noreply.github.com> Date: Fri, 8 Sep 2023 17:17:04 +0000 Subject: [PATCH] fix: focusWindow on hidden workspace triggers another focusWindow. (#3216) This commit address an issue where focusing a window on a hidden workspace inadvertently triggered a second `focusWindow` call due to simulated mouse movement. This behaviour led to the incorrect focus on the window under the cursor instead of target window of method `focusWindow()`, disrupting `focusurgentorlast` and `focuscurrentorlast` dispatchers. Introduced a flag to the `CMonitor::changeWorkspace()` method to prevent simulated mouse movements. This flag is set to false by default. Changed the `focusWindow()` method accordingly to set this flag to true when the target window is in a hidden workspace. --- src/Compositor.cpp | 2 +- src/helpers/Monitor.cpp | 6 +++--- src/helpers/Monitor.hpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index ea5faf63..a56a9249 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -878,7 +878,7 @@ void CCompositor::focusWindow(CWindow* pWindow, wlr_surface* pSurface) { const auto PWORKSPACE = getWorkspaceByID(pWindow->m_iWorkspaceID); PWORKSPACE->m_pLastFocusedWindow = pWindow; const auto PMONITOR = getMonitorFromID(PWORKSPACE->m_iMonitorID); - PMONITOR->changeWorkspace(PWORKSPACE); + PMONITOR->changeWorkspace(PWORKSPACE, false, true); // changeworkspace already calls focusWindow return; } diff --git a/src/helpers/Monitor.cpp b/src/helpers/Monitor.cpp index 4bb530b5..c1443d40 100644 --- a/src/helpers/Monitor.cpp +++ b/src/helpers/Monitor.cpp @@ -494,7 +494,7 @@ float CMonitor::getDefaultScale() { return 1; } -void CMonitor::changeWorkspace(CWorkspace* const pWorkspace, bool internal) { +void CMonitor::changeWorkspace(CWorkspace* const pWorkspace, bool internal, bool noMouseMove) { if (!pWorkspace) return; @@ -543,8 +543,8 @@ void CMonitor::changeWorkspace(CWorkspace* const pWorkspace, bool internal) { g_pCompositor->focusWindow(pWindow); } - - g_pInputManager->simulateMouseMovement(); + if (!noMouseMove) + g_pInputManager->simulateMouseMovement(); g_pLayoutManager->getCurrentLayout()->recalculateMonitor(ID); diff --git a/src/helpers/Monitor.hpp b/src/helpers/Monitor.hpp index 9e6fecc5..11dad9f6 100644 --- a/src/helpers/Monitor.hpp +++ b/src/helpers/Monitor.hpp @@ -102,7 +102,7 @@ class CMonitor { void setMirror(const std::string&); bool isMirror(); float getDefaultScale(); - void changeWorkspace(CWorkspace* const pWorkspace, bool internal = false); + void changeWorkspace(CWorkspace* const pWorkspace, bool internal = false, bool noMouseMove = false); void changeWorkspace(const int& id, bool internal = false); void setSpecialWorkspace(CWorkspace* const pWorkspace); void setSpecialWorkspace(const int& id);