am aa2275e3: Fix complex character support for plugins.

* commit 'aa2275e31d1ab6d672013e82a7b8da2559b0e085':
  Fix complex character support for plugins.
This commit is contained in:
Derek Sollenberger
2011-01-19 13:23:20 -08:00
committed by Android Git Automerger

View File

@@ -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.