aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2013-01-09 23:37:59 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2013-01-09 23:37:59 -0800
commit1e1791cc6e937a9524561d68644909f3532a4534 (patch)
tree78871488489b92546709bdebc9a0fe3e6d7cfe04 /java/src/com/android/inputmethod/latin/LatinIME.java
parent75c3bdd8fabf08217e72488b293109a5f2110844 (diff)
parenta80b8fc98f321920bc045bb5fd9952680d0e439e (diff)
downloadlatinime-1e1791cc6e937a9524561d68644909f3532a4534.tar.gz
latinime-1e1791cc6e937a9524561d68644909f3532a4534.tar.xz
latinime-1e1791cc6e937a9524561d68644909f3532a4534.zip
am a80b8fc9: Merge "Show final suggested word when batch input is finished"
* commit 'a80b8fc98f321920bc045bb5fd9952680d0e439e': Show final suggested word when batch input is finished
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index f1f50fe8f..df733c55a 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1588,10 +1588,9 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
final boolean dismissGestureFloatingPreviewText) {
showSuggestionStrip(suggestedWords, null);
final KeyboardView mainKeyboardView = mKeyboardSwitcher.getMainKeyboardView();
+ mainKeyboardView.showGestureFloatingPreviewText(suggestedWords);
if (dismissGestureFloatingPreviewText) {
mainKeyboardView.dismissGestureFloatingPreviewText();
- } else {
- mainKeyboardView.showGestureFloatingPreviewText(suggestedWords);
}
}