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

Commit 8102ae79 authored by Amith Yamasani's avatar Amith Yamasani
Browse files

2175312 : IME suggestions stay on screen after switching orientation in search dialog

Only show the candidate strip if the input view is showing. Otherwise ignore any
completions from the AutoCompleteTextView
parent 21daa532
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -694,7 +694,8 @@ public class LatinIME extends InputMethodService
    public void setCandidatesViewShown(boolean shown) {
        // TODO: Remove this if we support candidates with hard keyboard
        if (onEvaluateInputViewShown()) {
            super.setCandidatesViewShown(shown);
            // Show the candidates view only if input view is showing
            super.setCandidatesViewShown(shown && mInputView != null && mInputView.isShown());
        }
    }