aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/compat
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-08-26 18:54:08 +0900
committerJean Chalard <jchalard@google.com>2014-08-26 20:35:59 +0900
commit8380f921f7edaeea2033a1e967a14941400fe246 (patch)
treedb2e7cd9758440158a6e4096be43161ca2481c5b /java/src/com/android/inputmethod/compat
parentfdfe73ff1f4b8c9d7d8728baa322d70c3a74df99 (diff)
downloadlatinime-8380f921f7edaeea2033a1e967a14941400fe246.tar.gz
latinime-8380f921f7edaeea2033a1e967a14941400fe246.tar.xz
latinime-8380f921f7edaeea2033a1e967a14941400fe246.zip
Fix a bug where the top prediction would disappear.
This is because prediction can't be easily distinguished in style. This fixes the bug by simulating the right members, but some refactoring should be done to remove useless booleans. Bug: 17271923 Change-Id: Ib88f3fb95678021624e59535492926dd315d26fb
Diffstat (limited to 'java/src/com/android/inputmethod/compat')
-rw-r--r--java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java b/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
index c07997bc9..c33c01552 100644
--- a/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
+++ b/java/src/com/android/inputmethod/compat/SuggestionSpanUtils.java
@@ -68,7 +68,7 @@ public final class SuggestionSpanUtils {
public static CharSequence getTextWithSuggestionSpan(final Context context,
final String pickedWord, final SuggestedWords suggestedWords) {
if (TextUtils.isEmpty(pickedWord) || suggestedWords.isEmpty()
- || suggestedWords.mIsPrediction || suggestedWords.isPunctuationSuggestions()) {
+ || suggestedWords.isPrediction() || suggestedWords.isPunctuationSuggestions()) {
return pickedWord;
}