From dfb297bbfbbc41ee1210cd7da53e3d243fccb3b3 Mon Sep 17 00:00:00 2001 From: Hal <11689349+yokoffing@users.noreply.github.com> Date: Tue, 21 May 2024 09:59:03 -0400 Subject: [PATCH] some values need quotation marks https://github.com/yokoffing/Betterfox/issues/294 --- Smoothfox.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Smoothfox.js b/Smoothfox.js index bd0af23..a554f0c 100644 --- a/Smoothfox.js +++ b/Smoothfox.js @@ -3,7 +3,7 @@ * Smoothfox * * "Faber est suae quisque fortunae" * * priority: better scrolling * - * version: 126 * + * version: 126.1 * * url: https://github.com/yokoffing/Betterfox * ***************************************************************************************/ @@ -58,8 +58,8 @@ user_pref("general.smoothScroll.msdPhysics.enabled", true); user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600); user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650); user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25); -user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", 2); +user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", "2"); user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250); -user_pref("general.smoothScroll.currentVelocityWeighting", 1); -user_pref("general.smoothScroll.stopDecelerationWeighting", 1); +user_pref("general.smoothScroll.currentVelocityWeighting", "1"); +user_pref("general.smoothScroll.stopDecelerationWeighting", "1"); user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking