Loading core/java/android/webkit/ZoomManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -768,8 +768,8 @@ class ZoomManager { mMinZoomScale = zoomOverviewScale; } // fit the content width to the current view. Ignore the rounding error case. if (!mWebView.drawHistory() && (mInZoomOverview || mInitialZoomOverview) && Math.abs((viewWidth * mInvActualScale) - mZoomOverviewWidth) > 1) { if (!mWebView.drawHistory() && (mInitialZoomOverview || (mInZoomOverview && Math.abs((viewWidth * mInvActualScale) - mZoomOverviewWidth) > 1))) { mInitialZoomOverview = false; setZoomScale(zoomOverviewScale, !willScaleTriggerZoom(mTextWrapScale)); } Loading Loading
core/java/android/webkit/ZoomManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -768,8 +768,8 @@ class ZoomManager { mMinZoomScale = zoomOverviewScale; } // fit the content width to the current view. Ignore the rounding error case. if (!mWebView.drawHistory() && (mInZoomOverview || mInitialZoomOverview) && Math.abs((viewWidth * mInvActualScale) - mZoomOverviewWidth) > 1) { if (!mWebView.drawHistory() && (mInitialZoomOverview || (mInZoomOverview && Math.abs((viewWidth * mInvActualScale) - mZoomOverviewWidth) > 1))) { mInitialZoomOverview = false; setZoomScale(zoomOverviewScale, !willScaleTriggerZoom(mTextWrapScale)); } Loading