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 17:55:21 +0900
committerTadashi G. Takaoka <takaoka@google.com>2013-08-14 18:12:11 +0900
commite18439d5c78efa14b2861f6bd4a38285388655e4 (patch)
tree3537edb28a89e5e6be3fbe8d79ea2a0e3a0395fd /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java
parent4bc74d19ef72a919e09611e7d7b0d2d3d9e00a30 (diff)
downloadlatinime-e18439d5c78efa14b2861f6bd4a38285388655e4.tar.gz
latinime-e18439d5c78efa14b2861f6bd4a38285388655e4.tar.xz
latinime-e18439d5c78efa14b2861f6bd4a38285388655e4.zip
Add empty key background type
Change-Id: I9b07c58a9b70ae0228f87e1f066ca8cd959b4f03
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);