From dada872981211cfeccf5e445c7c1446c9b466a21 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Thu, 20 Oct 2022 17:52:17 +0100 Subject: [PATCH] minor swipe on new fixes --- 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 8e2c58b3..619f446b 100644 --- a/src/managers/input/Swipe.cpp +++ b/src/managers/input/Swipe.cpp @@ -218,10 +218,14 @@ void CInputManager::onSwipeUpdate(wlr_pointer_swipe_update_event* e) { } else { if (workspaceIDRight < m_sActiveSwipe.pWorkspaceBegin->m_iID) { if (*PSWIPENEW) { + g_pHyprRenderer->damageMonitor(m_sActiveSwipe.pMonitor); + if (VERTANIMS) m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset.setValueAndWarp(Vector2D(0, ((-m_sActiveSwipe.delta) / *PSWIPEDIST) * m_sActiveSwipe.pMonitor->vecSize.y)); else m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset.setValueAndWarp(Vector2D(((-m_sActiveSwipe.delta) / *PSWIPEDIST) * m_sActiveSwipe.pMonitor->vecSize.x, 0)); + + g_pCompositor->updateWorkspaceWindowDecos(m_sActiveSwipe.pWorkspaceBegin->m_iID); return; } m_sActiveSwipe.delta = 0;