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

Merge commit 'df344375a93f3bfe0360f5436c0866f44b7fb6cc' into eclair-plus-aosp

* commit 'df344375a93f3bfe0360f5436c0866f44b7fb6cc':
  compute Y scroll max by scaling only, ignoring title bar height
This commit is contained in:
Cary Clark
2009-09-15 10:40:49 -07:00
committed by Android Git Automerger

View File

@@ -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);
}
/**