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

Commit 3d69c8bd authored by Steve Elliott's avatar Steve Elliott
Browse files

Don't dismiss IME when changing active RemoteInput

Fixes: 189468877
Test: manual, atest
Change-Id: Iec8fe2d0dc309d62147061086069e5bf5b87abdf
parent 10a6b054
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -777,7 +777,8 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
            mOnVisibilityChangedListener.accept(visibility == VISIBLE);
            // Hide soft-keyboard when the input view became invisible
            // (i.e. The notification shade collapsed by pressing the home key)
            if (visibility != VISIBLE && !mEditText.isVisibleToUser()) {
            if (visibility != VISIBLE && !mEditText.isVisibleToUser()
                    && !mController.isRemoteInputActive()) {
                mEditText.hideIme();
            }
        }