diff options
| author | 2011-01-19 16:08:42 -0500 | |
|---|---|---|
| committer | 2011-01-19 16:18:04 -0500 | |
| commit | aa2275e31d1ab6d672013e82a7b8da2559b0e085 (patch) | |
| tree | acd4dd04ac78e4646d9f01c12bd53eb823583f8b | |
| parent | 4243dc394d89a93cb207efa36e9755c2424d688b (diff) | |
Fix complex character support for plugins.
bug: 3369527
Change-Id: I48c3442d7de54589f9f9578f6375b7ad291677db
| -rw-r--r-- | core/java/android/webkit/WebView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 9e09c286f1d0..c509dae66bc7 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -5235,7 +5235,7 @@ public class WebView extends AbsoluteLayout if (event.getAction() == KeyEvent.ACTION_DOWN) { mGotKeyDown = true; } else { - if (!mGotKeyDown) { + if (!mGotKeyDown && event.getAction() != KeyEvent.ACTION_MULTIPLE) { /* * We got a key up for which we were not the recipient of * the original key down. Don't give it to the view. |