mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 02:45:58 +01:00
fix workspace swipes mistake
This commit is contained in:
parent
ce8d655fad
commit
0026414f9b
1 changed files with 8 additions and 3 deletions
|
@ -58,6 +58,10 @@ void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) {
|
||||||
PWORKSPACEL->m_vRenderOffset.setValue(RENDEROFFSET);
|
PWORKSPACEL->m_vRenderOffset.setValue(RENDEROFFSET);
|
||||||
PWORKSPACEL->m_fAlpha.setValueAndWarp(255.f);
|
PWORKSPACEL->m_fAlpha.setValueAndWarp(255.f);
|
||||||
|
|
||||||
|
m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset.setValue(RENDEROFFSETMIDDLE);
|
||||||
|
m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset = Vector2D(m_sActiveSwipe.pMonitor->vecSize.x, 0);
|
||||||
|
m_sActiveSwipe.pWorkspaceBegin->m_fAlpha.setValueAndWarp(255.f);
|
||||||
|
|
||||||
Debug::log(LOG, "Ended swipe to the left");
|
Debug::log(LOG, "Ended swipe to the left");
|
||||||
} else {
|
} else {
|
||||||
// switch to right
|
// switch to right
|
||||||
|
@ -68,12 +72,13 @@ void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) {
|
||||||
PWORKSPACER->m_vRenderOffset.setValue(RENDEROFFSET);
|
PWORKSPACER->m_vRenderOffset.setValue(RENDEROFFSET);
|
||||||
PWORKSPACER->m_fAlpha.setValueAndWarp(255.f);
|
PWORKSPACER->m_fAlpha.setValueAndWarp(255.f);
|
||||||
|
|
||||||
|
m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset.setValue(RENDEROFFSETMIDDLE);
|
||||||
|
m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset = Vector2D(-m_sActiveSwipe.pMonitor->vecSize.x, 0);
|
||||||
|
m_sActiveSwipe.pWorkspaceBegin->m_fAlpha.setValueAndWarp(255.f);
|
||||||
|
|
||||||
Debug::log(LOG, "Ended swipe to the right");
|
Debug::log(LOG, "Ended swipe to the right");
|
||||||
}
|
}
|
||||||
|
|
||||||
m_sActiveSwipe.pWorkspaceBegin->m_vRenderOffset.setValue(RENDEROFFSETMIDDLE);
|
|
||||||
m_sActiveSwipe.pWorkspaceBegin->m_fAlpha.setValueAndWarp(255.f);
|
|
||||||
|
|
||||||
PWORKSPACEL->m_bForceRendering = false;
|
PWORKSPACEL->m_bForceRendering = false;
|
||||||
PWORKSPACER->m_bForceRendering = false;
|
PWORKSPACER->m_bForceRendering = false;
|
||||||
m_sActiveSwipe.pWorkspaceBegin->m_bForceRendering = false;
|
m_sActiveSwipe.pWorkspaceBegin->m_bForceRendering = false;
|
||||||
|
|
Loading…
Reference in a new issue