diff options
author | 2013-08-14 10:12:14 +0000 | |
---|---|---|
committer | 2013-08-14 10:13:33 +0000 | |
commit | bdef628a35222d7894c5f5916f94e6c3a8ef89bb (patch) | |
tree | 3c9689d16f9d5e177166a5460fb51a4a7199de2e /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | |
parent | ed5582ec651ffc106c8fba64d138adbec359c63e (diff) | |
parent | e18439d5c78efa14b2861f6bd4a38285388655e4 (diff) | |
download | latinime-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.java | 3 |
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); |