From 37703b6c875a935e6341d8a710796bc0c87d3044 Mon Sep 17 00:00:00 2001 From: Cary Clark Date: Wed, 23 Sep 2009 15:40:17 -0400 Subject: [PATCH] invalidate the webview after pressing the IME 'next' button fixes http://b/issue?id=2141013 --- core/java/android/webkit/WebTextView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/java/android/webkit/WebTextView.java b/core/java/android/webkit/WebTextView.java index 1a65ce8b7db27..d24a5abc0365e 100644 --- a/core/java/android/webkit/WebTextView.java +++ b/core/java/android/webkit/WebTextView.java @@ -328,6 +328,7 @@ import java.util.ArrayList; // Since the cursor will no longer be in the same place as the // focus, set the focus controller back to inactive mWebView.setFocusControllerInactive(); + mWebView.invalidate(); mOkayForFocusNotToMatch = true; break; case EditorInfo.IME_ACTION_DONE: