Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

Changing Firefox Smooth Scroll Settings (Using About:Config) to Be Like Default IE 11 Smooth Scroll Settings

Writer Emily Wong

I am trying to adjust the Firefox smooth scroll settings using about:config in order to achieve smooth scrolling like the default settings in Internet Explorer 11. Is this possible? Do you know which values to change, and what values to change them to?

4

2 Answers

I've been attempting to get the same settings too. It seems the behavior can't be copied exactly just by tweaking the values since Edge uses some acceleration parameters that are not in Firefox.

However, here's the best I found.

general.smoothScroll.mouseWheel.durationMaxMS = 100
general.smoothScroll.mouseWheel.durationMinMS = 100
general.smoothScroll.pages.durationMaxMS = 100
general.smoothScroll.pages.durationMinMS = 100
general.smoothScroll.pixels.durationMaxMS = 100
general.smoothScroll.pixels.durationMinMS = 100
general.smoothScroll.scrollbars.durationMaxMS = 100
general.smoothScroll.scrollbars.durationMinMS = 100
general.smoothScroll.stopDecelerationWeighting = 1

Here's an explanation of all the values.

1

This error seems to have resurfaced with Firefox 82 (Oct 2020). These seems to be the problem values:

general.smoothScroll.mouseWheel.durationMaxMS 200
general.smoothScroll.mouseWheel.durationMinMS 50

Reverting to these previous values seems to have resolved the issue:

general.smoothScroll.mouseWheel.durationMaxMS 400
general.smoothScroll.mouseWheel.durationMinMS 200

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy