diff options
| author | 2020-07-23 22:07:27 +0000 | |
|---|---|---|
| committer | 2020-07-23 22:07:27 +0000 | |
| commit | 7c53dba761512bde06e474e516e83e6c4d34b8a6 (patch) | |
| tree | 8f0f0fd9fb08fa1ce5081f0010c87f6017afadca | |
| parent | 62b56170ace3c7ec8805c9093406886ae1d2bf09 (diff) | |
| parent | aca9854a66bbfed83cc86422f14148d03749b794 (diff) | |
Merge "Fix missing IME switcher icon (w/ a hardware keyboard)" into rvc-dev am: aca9854a66
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12182245
Change-Id: Iec54c460edb144e4ff96dec165ebee65de73add4
| -rw-r--r-- | services/core/java/com/android/server/inputmethod/InputMethodManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java index 0154fe07a418..254285dfbd41 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java @@ -2942,7 +2942,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub vis = 0; } if (!mCurPerceptible) { - vis = 0; + vis &= ~InputMethodService.IME_VISIBLE; } // mImeWindowVis should be updated before calling shouldShowImeSwitcherLocked(). final boolean needsToShowImeSwitcher = shouldShowImeSwitcherLocked(vis); |