Skip to content

Commit

Permalink
Doc: When scrolling is too fast #188
Browse files Browse the repository at this point in the history
  • Loading branch information
black7375 committed Aug 25, 2021
1 parent c6ef1ea commit 4a90bca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ user_pref("apz.force_disable_desktop_zooming_scrollbars", false); /
user_pref("apz.paint_skipping.enabled", true); /// true
user_pref("apz.windows.use_direct_manipulation", true); /// true
user_pref("dom.event.wheel-deltaMode-lines.always-disabled", true); /// false
user_pref("general.smoothScroll.currentVelocityWeighting", "0.15"); /// "0.25"
user_pref("general.smoothScroll.currentVelocityWeighting", "0.15"); /// "0.25" <- 1. If scroll too fast, set to "0.12"
user_pref("general.smoothScroll.durationToIntervalRatio", 1000); /// 200
user_pref("general.smoothScroll.lines.durationMaxMS", 100); /// 150
user_pref("general.smoothScroll.lines.durationMinMS", 0); /// 150
Expand Down Expand Up @@ -63,7 +63,7 @@ user_pref("mousewheel.default.delta_multiplier_x", 100); /
user_pref("mousewheel.default.delta_multiplier_y", 100); /// 100
user_pref("mousewheel.default.delta_multiplier_z", 100); /// 100
user_pref("mousewheel.min_line_scroll_amount", 0); /// 5
user_pref("mousewheel.system_scroll_override.enabled", true); /// true
user_pref("mousewheel.system_scroll_override.enabled", true); /// true <- 2. If scroll too fast, set to false
user_pref("mousewheel.system_scroll_override_on_root_content.enabled", false); /// true
user_pref("mousewheel.transaction.timeout", 1500); /// 1500
user_pref("toolkit.scrollbox.horizontalScrollDistance", 3); /// 5
Expand Down

0 comments on commit 4a90bca

Please sign in to comment.