We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ffc9ec + 8fae09d commit 425c595Copy full SHA for 425c595
core/java/android/webkit/ZoomManager.java
@@ -498,6 +498,11 @@ public void animateZoom(Canvas canvas) {
498
if (mZoomScale == 0) {
499
// We've reached the end of the zoom animation.
500
mInHWAcceleratedZoom = false;
501
+
502
+ // Ensure that the zoom level is pushed to WebCore. This has not
503
+ // yet occurred because we prevent it from happening while
504
+ // mInHWAcceleratedZoom is true.
505
+ mWebView.sendViewSizeZoom(false);
506
}
507
} else {
508
canvas.translate(tx, ty);
0 commit comments