We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 351f44a + e2f3aee commit e4dbe88Copy full SHA for e4dbe88
core/java/android/webkit/WebView.java
@@ -6546,6 +6546,13 @@ private void doDrag(int deltaX, int deltaY) {
6546
}
6547
6548
private void stopTouch() {
6549
+ if (mScroller.isFinished() && !mSelectingText
6550
+ && (mTouchMode == TOUCH_DRAG_MODE || mTouchMode == TOUCH_DRAG_LAYER_MODE)) {
6551
+ WebViewCore.resumePriority();
6552
+ WebViewCore.resumeUpdatePicture(mWebViewCore);
6553
+ nativeSetIsScrolling(false);
6554
+ }
6555
+
6556
// we also use mVelocityTracker == null to tell us that we are
6557
// not "moving around", so we can take the slower/prettier
6558
// mode in the drawing code
0 commit comments