diff options
author | 2013-08-09 21:07:40 +0900 | |
---|---|---|
committer | 2013-08-09 21:07:40 +0900 | |
commit | 724db044957eb3544323c9814cbb4f20e81b8594 (patch) | |
tree | 1abf4aa876074ee6c9bc25daf65fdc9f159239cd /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 5c057b32414fab5f5d8267f8fc8b4230b54d4cca (diff) | |
download | latinime-724db044957eb3544323c9814cbb4f20e81b8594.tar.gz latinime-724db044957eb3544323c9814cbb4f20e81b8594.tar.xz latinime-724db044957eb3544323c9814cbb4f20e81b8594.zip |
Deallocate gesture trail bitmap when unneeded further
Follow up to I5bc980c4dc41bc304be3c190934c1f7c55c9d244
bug: 8967766
Change-Id: I7b916daa5269cfde359a77555e8ffadf0e4a8f92
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 6339e9c50..5c5b7b7c0 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -846,8 +846,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen mainKeyboardView.setSlidingKeyInputPreviewEnabled( currentSettingsValues.mSlidingKeyInputPreviewEnabled); mainKeyboardView.setGestureHandlingEnabledByUser( - currentSettingsValues.mGestureInputEnabled); - mainKeyboardView.setGesturePreviewMode(currentSettingsValues.mGesturePreviewTrailEnabled, + currentSettingsValues.mGestureInputEnabled, + currentSettingsValues.mGestureTrailEnabled, currentSettingsValues.mGestureFloatingPreviewTextEnabled); // If we have a user dictionary addition in progress, we should check now if we should |