diff options
author | 2012-03-05 23:25:29 -0800 | |
---|---|---|
committer | 2012-03-05 23:25:29 -0800 | |
commit | 231ef8fa3e6cf0961c62b2bf54300722ea3c9b64 (patch) | |
tree | 0e7674264b898af28dc559cdb79a72093b6e5779 /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java | |
parent | d1dbdb6b20d05d4bae4272756c10776f075f6b55 (diff) | |
parent | ca7ec2097ca6af1505c1e6aa8b81b6068ba46dae (diff) | |
download | latinime-231ef8fa3e6cf0961c62b2bf54300722ea3c9b64.tar.gz latinime-231ef8fa3e6cf0961c62b2bf54300722ea3c9b64.tar.xz latinime-231ef8fa3e6cf0961c62b2bf54300722ea3c9b64.zip |
Merge "Integrate the logic to calculate the proximities"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java index cd83c3e21..1f7214777 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java @@ -66,7 +66,7 @@ public class MoreSuggestionsView extends KeyboardView implements MoreKeysPanel { } @Override - public void onCodeInput(int primaryCode, int[] keyCodes, int x, int y) { + public void onCodeInput(int primaryCode, int x, int y) { final int index = primaryCode - MoreSuggestions.SUGGESTION_CODE_BASE; if (index >= 0 && index < SuggestionsView.MAX_SUGGESTIONS) { mListener.onCustomRequest(index); |