Commit b438da15 authored by Angus L. M. McLean IV's avatar Angus L. M. McLean IV Committed by Chromium LUCI CQ

Cut scroll threshold in half for pagination

Bug: 760279
Change-Id: I122f307af8047932ee593e8f4baccd5591d74ad4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2622767Reviewed-by: default avatarAhmed Mehfooz <amehfooz@chromium.org>
Reviewed-by: default avatarAhmed Fakhry <afakhry@chromium.org>
Commit-Queue: Angus McLean <angusmclean@chromium.org>
Cr-Commit-Position: refs/heads/master@{#844155}
parent 82e6de7b
...@@ -13,7 +13,7 @@ namespace ash { ...@@ -13,7 +13,7 @@ namespace ash {
namespace { namespace {
// Constants for dealing with scroll events. // Constants for dealing with scroll events.
const int kMinScrollToSwitchPage = 20; const int kMinScrollToSwitchPage = 10;
const int kMinHorizVelocityToSwitchPage = 800; const int kMinHorizVelocityToSwitchPage = 800;
const double kFinishTransitionThreshold = 0.33; const double kFinishTransitionThreshold = 0.33;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment