edge-frfox icon indicating copy to clipboard operation
edge-frfox copied to clipboard

Edge like smooth scrolling

Open nonetrix opened this issue 2 years ago • 2 comments

This recommends tweaks that make the smooth scrolling more like edge

general.smoothScroll.currentVelocityWeighting: 0

general.smoothScroll.mouseWheel.durationMaxMS: 250

general.smoothScroll.stopDecelerationWeighting; 0.82

mousewheel.min_line_scroll_amount: 25

general.smoothScroll.msdPhysics.enabled: = true

Source: https://www.reddit.com/r/firefox/comments/mj6g9a/firefox_smooth_scroll_like_edge/

nonetrix avatar Jul 30 '22 01:07 nonetrix

I have found better settings I will update this soon

nonetrix avatar Aug 02 '22 00:08 nonetrix

IMHO best set is based on reddit (but now I cannot find it original source) CC @bmFtZQ

user_pref("general.smoothScroll", true);
user_pref("general.smoothScroll.currentVelocityWeighting", "0.15");
user_pref("general.smoothScroll.mouseWheel.durationMaxMS", 250);
user_pref("general.smoothScroll.mouseWheel.durationMinMS", 250);
user_pref("general.smoothScroll.msdPhysics.enabled", true);
user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 400);
user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 600);
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 120);
user_pref("general.smoothScroll.other.durationMaxMS", 500);
user_pref("general.smoothScroll.pages.durationMaxMS", 350);
user_pref("general.smoothScroll.stopDecelerationWeighting", "0.8");
user_pref("mousewheel.min_line_scroll_amount", 22);

FadeMind avatar Sep 09 '22 15:09 FadeMind