diff options
author | 2014-03-28 19:52:58 +0900 | |
---|---|---|
committer | 2014-03-28 19:54:07 +0900 | |
commit | 452cd2f61958ace6ffca5d8f917e76ab792b006e (patch) | |
tree | de83893be3d1b8634e970f6187c4ba2a2ad72584 /java | |
parent | 52eb673c46d7be85237921866ec6a4f6357020fb (diff) | |
download | latinime-452cd2f61958ace6ffca5d8f917e76ab792b006e.tar.gz latinime-452cd2f61958ace6ffca5d8f917e76ab792b006e.tar.xz latinime-452cd2f61958ace6ffca5d8f917e76ab792b006e.zip |
Fix a bug where LatinIME would leak pipes.
Bug: 12667742
Bug: 12821388
Change-Id: Ic0bad56fb96e54ac032759adffc8ea320c06dff2
Diffstat (limited to '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); } |