From 1455442b9a08cfc72908edaaf8d7dc1abfe9057f Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 26 Jul 2022 18:38:30 +0200 Subject: [PATCH] fix swipe not cancelling constraints --- src/managers/input/Swipe.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/managers/input/Swipe.cpp b/src/managers/input/Swipe.cpp index bde806d3..7dd3128a 100644 --- a/src/managers/input/Swipe.cpp +++ b/src/managers/input/Swipe.cpp @@ -79,6 +79,8 @@ void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) { m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset = Vector2D(m_sActiveSwipe.pMonitor->vecSize.x, 0); m_sActiveSwipe.pWorkspaceBegin->m_fAlpha.setValueAndWarp(255.f); + g_pCompositor->m_sSeat.mouse->currentConstraint = nullptr; + Debug::log(LOG, "Ended swipe to the left"); } else { // switch to right @@ -93,6 +95,8 @@ void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) { m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset = Vector2D(-m_sActiveSwipe.pMonitor->vecSize.x, 0); m_sActiveSwipe.pWorkspaceBegin->m_fAlpha.setValueAndWarp(255.f); + g_pCompositor->m_sSeat.mouse->currentConstraint = nullptr; + Debug::log(LOG, "Ended swipe to the right"); }