diff options
author | 2014-08-13 14:52:36 +0900 | |
---|---|---|
committer | 2014-08-22 21:25:35 +0900 | |
commit | 2637be27c51be03e39b0db1c66312c4cc55bc7de (patch) | |
tree | 97c6f6e991e5405b121c08e003bf734baa5cb3ba /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | |
parent | cabb66e9bc2d5c13d83ccae6ce2d2e673b6ebf0e (diff) | |
download | latinime-2637be27c51be03e39b0db1c66312c4cc55bc7de.tar.gz latinime-2637be27c51be03e39b0db1c66312c4cc55bc7de.tar.xz latinime-2637be27c51be03e39b0db1c66312c4cc55bc7de.zip |
Support Accept typed word UI
Change-Id: I58e95b2791a45afdc7dae8e26dcfc200b3b4b854
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java index 346aea34a..9d186d44d 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java +++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java @@ -125,9 +125,9 @@ public final class MoreSuggestions extends Keyboard { } private static final int[][] COLUMN_ORDER_TO_NUMBER = { - { 0, }, - { 1, 0, }, - { 2, 0, 1}, + { 0 }, // center + { 1, 0 }, // right-left + { 1, 0, 2 }, // center-left-right }; public int getNumColumnInRow(final int index) { |