diff options
author | 2013-08-09 15:40:57 -0700 | |
---|---|---|
committer | 2013-08-09 15:40:57 -0700 | |
commit | 6ceef84e7d725d74e6c3cd0729d7fd43947e976a (patch) | |
tree | fc40808cacd0281413cdd7c57d6df6c95506b636 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 3f75c04144e0ea7a24164fc91257b51a4f93a37b (diff) | |
parent | 724db044957eb3544323c9814cbb4f20e81b8594 (diff) | |
download | latinime-6ceef84e7d725d74e6c3cd0729d7fd43947e976a.tar.gz latinime-6ceef84e7d725d74e6c3cd0729d7fd43947e976a.tar.xz latinime-6ceef84e7d725d74e6c3cd0729d7fd43947e976a.zip |
am 724db044: Deallocate gesture trail bitmap when unneeded further
* commit '724db044957eb3544323c9814cbb4f20e81b8594':
Deallocate gesture trail bitmap when unneeded further
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 68805f785..08a542965 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -852,8 +852,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 |