From bba2faa602f14d75468c58a801f74ac29fd12f80 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 16 May 2026 15:45:13 -0500 Subject: [PATCH] Fix broken horizontal scroll inversion --- app/streaming/input/mouse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/input/mouse.cpp b/app/streaming/input/mouse.cpp index 66bb4413..cba1079d 100644 --- a/app/streaming/input/mouse.cpp +++ b/app/streaming/input/mouse.cpp @@ -193,7 +193,7 @@ void SdlInputHandler::handleMouseWheelEvent(SDL_MouseWheelEvent* event) if (event->preciseX != 0.0f) { // Invert the scroll direction if needed if (m_ReverseScrollDirection) { - event->preciseX = -event->preciseY; + event->preciseX = -event->preciseX; } #ifdef Q_OS_DARWIN