Fix complex character support for plugins.

bug: 3369527
Change-Id: I48c3442d7de54589f9f9578f6375b7ad291677db
This commit is contained in:
Derek Sollenberger
2011-01-19 16:08:42 -05:00
parent 4243dc394d
commit aa2275e31d

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.