diff options
| author | Leon Scroggins <scroggo@google.com> | 2010-04-12 08:17:38 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2010-04-12 08:17:38 -0700 |
| commit | 6636ff18d4a0e80f81f169bfb557d3af0d32002e (patch) | |
| tree | 726b85439c31f73d5c6a353b96f7481e8ffcf753 | |
| parent | 76fc56fb6576a545449c3e9a1f2a2aca81f28e23 (diff) | |
| parent | fac110dc24a13d2b44d13d2f71719928a94b40ec (diff) | |
| download | frameworks_base-6636ff18d4a0e80f81f169bfb557d3af0d32002e.zip frameworks_base-6636ff18d4a0e80f81f169bfb557d3af0d32002e.tar.gz frameworks_base-6636ff18d4a0e80f81f169bfb557d3af0d32002e.tar.bz2 | |
am fac110dc: am 853a4240: am 63284ede: Do not check mWebTextView\'s focus state to determine editing mode.
| -rw-r--r-- | core/java/android/webkit/WebView.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index bbe52a3..4f2a67b 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -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; } /** |
