diff options
| author | Huahui Wu <hwu@google.com> | 2011-01-20 09:23:09 -0800 |
|---|---|---|
| committer | Huahui Wu <hwu@google.com> | 2011-01-20 09:23:09 -0800 |
| commit | bc7c148285ee39f2eafbfbe98d8fbbbe4bcc53bd (patch) | |
| tree | 8b72be4c9a83eb5ebf58fe6c7e760a73be38a5de /core/java | |
| parent | 1f30125c1c1efb1e8f2e6ce9ed79f768c243d63e (diff) | |
b/3350774 Enforce clearing the flag mIsHandlingMultiTouch.
b/3350774 was fixed by https://android-git.corp.google.com/g/#change,91337
But there is small chance that the flag mIsHandlingMultiTouch is not cleared
correctly. This CL enforces to clear the flag.
Change-Id: I79ba6b401a7d7b3c772d3f123912343491551507
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/webkit/WebView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 82e6964a5cb9..f5ad6feb0fac 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -5405,6 +5405,7 @@ public class WebView extends AbsoluteLayout case MotionEvent.ACTION_DOWN: { mPreventDefault = PREVENT_DEFAULT_NO; mConfirmMove = false; + mIsHandlingMultiTouch = false; mInitialHitTestResult = null; if (!mScroller.isFinished()) { // stop the current scroll animation, but if this is |
