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:35:09 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-01-09 23:35:09 -0800
commita80b8fc98f321920bc045bb5fd9952680d0e439e (patch)
tree37f79154f0525e4fb6a6a354d8d741aff72ac826 /java/src/com/android/inputmethod/latin/LatinIME.java
parentae4c81993c201f501791520b8cd3697ff1f29649 (diff)
parent50d902ac6fd018131bd7044dd968bb99e0fdba7b (diff)
downloadlatinime-a80b8fc98f321920bc045bb5fd9952680d0e439e.tar.gz
latinime-a80b8fc98f321920bc045bb5fd9952680d0e439e.tar.xz
latinime-a80b8fc98f321920bc045bb5fd9952680d0e439e.zip
Merge "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);
}
}