aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2013-08-14 10:12:14 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-08-14 10:13:33 +0000
commitbdef628a35222d7894c5f5916f94e6c3a8ef89bb (patch)
tree3c9689d16f9d5e177166a5460fb51a4a7199de2e /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
parented5582ec651ffc106c8fba64d138adbec359c63e (diff)
parente18439d5c78efa14b2861f6bd4a38285388655e4 (diff)
downloadlatinime-bdef628a35222d7894c5f5916f94e6c3a8ef89bb.tar.gz
latinime-bdef628a35222d7894c5f5916f94e6c3a8ef89bb.tar.xz
latinime-bdef628a35222d7894c5f5916f94e6c3a8ef89bb.zip
Merge "Add empty key background type"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
index e97069dff..acd47450b 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
@@ -210,7 +210,8 @@ public final class MoreSuggestions extends Keyboard {
final int indexInMoreSuggestions = index + SUGGESTION_CODE_BASE;
final Key key = new Key(
params, word, info, KeyboardIconsSet.ICON_UNDEFINED, indexInMoreSuggestions,
- null, x, y, width, params.mDefaultRowHeight, 0);
+ null /* outputText */, x, y, width, params.mDefaultRowHeight,
+ 0 /* labelFlags */, Key.BACKGROUND_TYPE_NORMAL);
params.markAsEdgeKey(key, index);
params.onAddKey(key);
final int columnNumber = params.getColumnNumber(index);