aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/Suggest.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-06-14 16:28:57 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-06-14 20:40:56 +0900
commit86e815a142c8aa13213151e381a8a24ef23073d3 (patch)
tree10d9b1f4c1293f58f1d1a5ef14ab08be71232867 /java/src/com/android/inputmethod/latin/Suggest.java
parent90cb2e6296726960b12e622ffa2b30c5ff92a079 (diff)
downloadlatinime-86e815a142c8aa13213151e381a8a24ef23073d3.tar.gz
latinime-86e815a142c8aa13213151e381a8a24ef23073d3.tar.xz
latinime-86e815a142c8aa13213151e381a8a24ef23073d3.zip
Implement expandable candidates pane
This change removes horizontal scroll from candidates strip. Instead of that this change introduces "fixed 3 items candidates strip" and "expandable candidates pane". Bug: 4175031 Change-Id: Ia367d9074436fdea76d3b653d81798ce2749170e
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Suggest.java')
-rw-r--r--java/src/com/android/inputmethod/latin/Suggest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java
index 33f9820cc..62788fb9e 100644
--- a/java/src/com/android/inputmethod/latin/Suggest.java
+++ b/java/src/com/android/inputmethod/latin/Suggest.java
@@ -84,7 +84,7 @@ public class Suggest implements Dictionary.WordCallback {
private final Map<String, Dictionary> mUnigramDictionaries = new HashMap<String, Dictionary>();
private final Map<String, Dictionary> mBigramDictionaries = new HashMap<String, Dictionary>();
- private int mPrefMaxSuggestions = 12;
+ private int mPrefMaxSuggestions = 18;
private static final int PREF_MAX_BIGRAMS = 60;