am 7a719785: Merge change Ifcafa460 into eclair-mr2

Merge commit '7a7197853de1b8aea0945b5b72e0eb12b2837b50' into eclair-mr2-plus-aosp

* commit '7a7197853de1b8aea0945b5b72e0eb12b2837b50':
  fix multiple text areas, and text areas without focus rings
This commit is contained in:
Cary Clark
2009-10-21 11:59:20 -07:00
committed by Android Git Automerger

View File

@@ -138,7 +138,10 @@ import java.util.ArrayList;
}
if (!isArrowKey && !mOkayForFocusNotToMatch
&& mWebView.nativeFocusNodePointer() != mNodePointer) {
mWebView.nativeClearCursor();
if (mWebView.nativeCursorNodePointer() == mNodePointer) {
// remove cursor so character doesn't go back to this view
mWebView.nativeClearCursor();
}
// Do not call remove() here, which hides the soft keyboard. If
// the soft keyboard is being displayed, the user will still want
// it there.