am 63284ede: Do not check mWebTextView\'s focus state to determine editing mode.

Merge commit '63284ede623ca8a4119f1f44b86fbf017faba8dc' into froyo-plus-aosp

* commit '63284ede623ca8a4119f1f44b86fbf017faba8dc':
  Do not check mWebTextView's focus state to determine editing mode.
This commit is contained in:
Leon Scroggins
2010-04-12 08:11:40 -07:00
committed by Android Git Automerger

View File

@@ -1722,8 +1722,7 @@ public class WebView extends AbsoluteLayout
* Return true if the browser is displaying a TextView for text input.
*/
private boolean inEditingMode() {
return mWebTextView != null && mWebTextView.getParent() != null
&& mWebTextView.hasFocus();
return mWebTextView != null && mWebTextView.getParent() != null;
}
/**