Skip to content

Commit

Permalink
Add: Smooth Scrolling
Browse files Browse the repository at this point in the history
Rather than embodying the softness itself

Make it feel like follows:
- Slightly fast
- low latency
- Be honest

I don't want too many modifications.
  • Loading branch information
black7375 committed Aug 22, 2021
1 parent 5ba68d8 commit 855742f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ user_pref("browser.urlbar.suggest.calculator", true);

// Integrated unit convertor at urlbar
// user_pref("browser.urlbar.unitConversion.enabled", true);

// ** Scrolling Options ********************************************************
user_pref("mousewheel.min_line_scroll_amount", 10); /* Original: 5 */
user_pref("general.smoothScroll.mouseWheel.durationMinMS", 80); /* Original: 50 */
user_pref("general.smoothScroll.currentVelocityWeighting", 0.15); /* Original: 0.25 */
user_pref("general.smoothScroll.stopDecelerationWeighting", 0.6); /* Original: 0.4 */

0 comments on commit 855742f

Please sign in to comment.