Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6a35f8e authored by Cary Clark's avatar Cary Clark Committed by Android Git Automerger
Browse files

am df344375: compute Y scroll max by scaling only, ignoring title bar height

Merge commit 'df344375' into eclair-plus-aosp

* commit 'df344375':
  compute Y scroll max by scaling only, ignoring title bar height
parents 1f42641e df344375
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5772,7 +5772,7 @@ public class WebView extends AbsoluteLayout
        // FIXME the divisor should be retrieved from somewhere
        // the closest thing today is hard-coded into ScrollView.java
        // (from ScrollView.java, line 363)   int maxJump = height/2;
        return viewToContentY(height);
        return Math.round(height * mInvActualScale);
    }

    /**