am e03848eb: Merge change 27154 into eclair
Merge commit 'e03848eb93fde30aee4201f8b41b91fa57475bc2' into eclair-plus-aosp * commit 'e03848eb93fde30aee4201f8b41b91fa57475bc2': When change from narrow screen to wide screen, we will
This commit is contained in:
@@ -3587,9 +3587,13 @@ public class WebView extends AbsoluteLayout
|
|||||||
|
|
||||||
// update mMinZoomScale if the minimum zoom scale is not fixed
|
// update mMinZoomScale if the minimum zoom scale is not fixed
|
||||||
if (!mMinZoomScaleFixed) {
|
if (!mMinZoomScaleFixed) {
|
||||||
mMinZoomScale = (float) getViewWidth()
|
// when change from narrow screen to wide screen, the new viewWidth
|
||||||
|
// can be wider than the old content width. We limit the minimum
|
||||||
|
// scale to 1.0f. The proper minimum scale will be calculated when
|
||||||
|
// the new picture shows up.
|
||||||
|
mMinZoomScale = Math.min(1.0f, (float) getViewWidth()
|
||||||
/ (mDrawHistory ? mHistoryPicture.getWidth()
|
/ (mDrawHistory ? mHistoryPicture.getWidth()
|
||||||
: mZoomOverviewWidth);
|
: mZoomOverviewWidth));
|
||||||
}
|
}
|
||||||
|
|
||||||
// we always force, in case our height changed, in which case we still
|
// we always force, in case our height changed, in which case we still
|
||||||
|
|||||||
Reference in New Issue
Block a user