aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2013-02-27 23:22:32 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2013-02-27 23:22:32 +0000
commit2ed1ec411d8b539890359f8ced8e1fe8d90344cd (patch)
tree0a9e0d8498b771d29d79105f0416a181e33b6826 /java/src
parent6aaeb7fc34f98e9f72bfede6624c238d6ff15ccd (diff)
parent016046eb4e3ea28745b9a29c41c126801f177f58 (diff)
downloadlatinime-2ed1ec411d8b539890359f8ced8e1fe8d90344cd.tar.gz
latinime-2ed1ec411d8b539890359f8ced8e1fe8d90344cd.tar.xz
latinime-2ed1ec411d8b539890359f8ced8e1fe8d90344cd.zip
am 016046eb: Keep Keyboard object while closing KeyboardView
* commit '016046eb4e3ea28745b9a29c41c126801f177f58': Keep Keyboard object while closing KeyboardView
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/KeyboardView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardView.java b/java/src/com/android/inputmethod/keyboard/KeyboardView.java
index 4dab50fd8..365c35b48 100644
--- a/java/src/com/android/inputmethod/keyboard/KeyboardView.java
+++ b/java/src/com/android/inputmethod/keyboard/KeyboardView.java
@@ -635,9 +635,9 @@ public class KeyboardView extends View {
invalidate(x, y, x + key.mWidth, y + key.mHeight);
}
+ // TODO: Remove this method.
public void closing() {
mInvalidateAllKeys = true;
- mKeyboard = null;
}
@Override