diff options
author | 2014-03-28 11:02:43 +0000 | |
---|---|---|
committer | 2014-03-28 11:02:43 +0000 | |
commit | 907e9ea426bf30e37394ea2999644cbd60620c6b (patch) | |
tree | de83893be3d1b8634e970f6187c4ba2a2ad72584 /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | |
parent | ea024589dc2bb94d19a20935630dbdd45ba49bf7 (diff) | |
parent | 452cd2f61958ace6ffca5d8f917e76ab792b006e (diff) | |
download | latinime-907e9ea426bf30e37394ea2999644cbd60620c6b.tar.gz latinime-907e9ea426bf30e37394ea2999644cbd60620c6b.tar.xz latinime-907e9ea426bf30e37394ea2999644cbd60620c6b.zip |
am 452cd2f6: Fix a bug where LatinIME would leak pipes.
* commit '452cd2f61958ace6ffca5d8f917e76ab792b006e':
Fix a bug where LatinIME would leak pipes.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java index 79b8a3711..e2cdbb39c 100644 --- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java +++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java @@ -130,6 +130,7 @@ public final class InputLogic { // so we try using some heuristics to find out about these and fix them. mConnection.tryFixLyingCursorPosition(); cancelDoubleSpacePeriodCountdown(); + mInputLogicHandler.destroy(); mInputLogicHandler = new InputLogicHandler(mLatinIME, this); } |