Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e17686c authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix missing setService call for CandaiteView

This bug has been introduced by I95f379b9.

Bug: 4486388
Change-Id: I23fd3abe05946d4709b4593efa4713cd19723479
parent 0aa01337
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;
    }