From 7318175ce712d402c0496ae213fbcb677a800d7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Tue, 28 Nov 2017 22:39:37 +0100 Subject: [PATCH] Tweak scroll kinetic properties. --- right/src/usb_report_updater.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index ede4c69..102ef19 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -43,11 +43,11 @@ static mouse_kinetic_state_t mouseScrollState = { .leftState = SerializedMouseAction_ScrollLeft, .rightState = SerializedMouseAction_ScrollRight, .intMultiplier = 1, - .initialSpeed = 16, - .acceleration = 16, - .deceleratedSpeed = 5, // 25 - .baseSpeed = 24, - .acceleratedSpeed = 255, // 100 + .initialSpeed = 20, + .acceleration = 20, + .deceleratedSpeed = 10, + .baseSpeed = 20, + .acceleratedSpeed = 40, }; void processMouseKineticState(mouse_kinetic_state_t *kineticState)