From 99966093c55b048bbd62eff192d8069023c42551 Mon Sep 17 00:00:00 2001 From: Zakk Date: Thu, 18 Jul 2024 21:59:19 -0400 Subject: [PATCH] Don't skip visible special workspaces --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index c392f6a..8b5a221 100644 --- a/main.cpp +++ b/main.cpp @@ -168,7 +168,7 @@ void easymotionDispatch(std::string args) for (auto &w : g_pCompositor->m_vWindows) { for (auto &m : g_pCompositor->m_vMonitors) { - if (w->m_pWorkspace == m->activeWorkspace) { + if (w->m_pWorkspace == m->activeWorkspace || m->activeSpecialWorkspace == w->m_pWorkspace) { if (w->isHidden() || !w->m_bIsMapped || w->m_bFadingOut) continue; if (w->m_pWorkspace->m_bHasFullscreenWindow && g_pCompositor->getFullscreenWindowOnWorkspace(w->workspaceID()) != w)