aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-10-30 22:14:43 +0000
committerVaxry <[email protected]>2024-10-30 22:14:43 +0000
commita0b2169ed600b71627188dcd208b26911da8d583 (patch)
treed59596edbf4c4ffa0581b92e3bbcf5710e9758e6
parentee91df62f0be6ac65eae0eb3ed74383a3671aef7 (diff)
downloadHyprland-a0b2169ed600b71627188dcd208b26911da8d583.tar.gz
Hyprland-a0b2169ed600b71627188dcd208b26911da8d583.zip
input: revert #8279
-rw-r--r--src/managers/input/InputManager.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp
index 91c12ece..028286bf 100644
--- a/src/managers/input/InputManager.cpp
+++ b/src/managers/input/InputManager.cpp
@@ -831,7 +831,6 @@ void CInputManager::onMouseWheel(IPointer::SAxisEvent e) {
int32_t deltaDiscrete = std::abs(discrete) != 0 && std::abs(discrete) < 1 ? std::copysign(1, discrete) : std::round(discrete);
g_pSeatManager->sendPointerAxis(e.timeMs, e.axis, delta, deltaDiscrete, value120, e.source, WL_POINTER_AXIS_RELATIVE_DIRECTION_IDENTICAL);
- simulateMouseMovement();
}
Vector2D CInputManager::getMouseCoordsInternal() {