| Index: chrome/browser/resources/settings/settings_main/settings_main.js
|
| diff --git a/chrome/browser/resources/settings/settings_main/settings_main.js b/chrome/browser/resources/settings/settings_main/settings_main.js
|
| index 51bb5f422fb7db5c411e7c39dc236072f6f8e1db..22b4bd86fb2766ef7145bfac11d076b95fbf0639 100644
|
| --- a/chrome/browser/resources/settings/settings_main/settings_main.js
|
| +++ b/chrome/browser/resources/settings/settings_main/settings_main.js
|
| @@ -124,7 +124,8 @@ Polymer({
|
| // How much of the overscroll is visible (may be negative).
|
| var visibleOverscroll = overscroll.scrollHeight -
|
| (overscrollBottom - visibleBottom);
|
| - this.overscroll_ = Math.max(opt_minHeight || 0, visibleOverscroll);
|
| + this.overscroll_ =
|
| + Math.max(opt_minHeight || 0, Math.ceil(visibleOverscroll));
|
| },
|
|
|
| /**
|
|
|