aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-05-25 17:55:41 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-05-25 17:57:33 +0900
commit3e17686c682f4e320d46048d99e07eea2d38e7cf (patch)
treee23ed48394963c8f00bac3985fa5aab7f4336791 /java/src/com/android/inputmethod
parent0aa0133795d845a86a115cde904adaefaf6d165d (diff)
downloadlatinime-3e17686c682f4e320d46048d99e07eea2d38e7cf.tar.gz
latinime-3e17686c682f4e320d46048d99e07eea2d38e7cf.tar.xz
latinime-3e17686c682f4e320d46048d99e07eea2d38e7cf.zip
Fix missing setService call for CandaiteView
This bug has been introduced by I95f379b9. Bug: 4486388 Change-Id: I23fd3abe05946d4709b4593efa4713cd19723479
Diffstat (limited to 'java/src/com/android/inputmethod')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 6cb928321..dc2fe4c53 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -484,6 +484,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
final View inputView = mKeyboardSwitcher.onCreateInputView();
mCandidateViewContainer = inputView.findViewById(R.id.candidates_container);
mCandidateView = (CandidateView) inputView.findViewById(R.id.candidates);
+ mCandidateView.setService(this);
mCandidateStripHeight = (int)mResources.getDimension(R.dimen.candidate_strip_height);
return inputView;
}