Skip to content

Commit 0e0ce11

Browse files
jreckAndroid (Google) Code Review
authored andcommitted
Merge "Stay in layer scroll if nothing to scroll" into jb-dev
2 parents 6a5f9f6 + 919c89e commit 0e0ce11

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/java/android/webkit/WebViewClassic.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6224,8 +6224,9 @@ private boolean doDrag(int deltaX, int deltaY) {
62246224
final int resultY = Math.max(0,
62256225
Math.min(mScrollingLayerRect.top + contentY, maxY));
62266226

6227-
if (resultX != mScrollingLayerRect.left ||
6228-
resultY != mScrollingLayerRect.top) {
6227+
if (resultX != mScrollingLayerRect.left
6228+
|| resultY != mScrollingLayerRect.top
6229+
|| (contentX | contentY) == 0) {
62296230
// In case we switched to dragging the page.
62306231
mTouchMode = TOUCH_DRAG_LAYER_MODE;
62316232
deltaX = contentX;

0 commit comments

Comments
 (0)