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

Commit e470fcfe authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Fix a remaining View leak in InputMethodManager." into nyc-dev

parents f4b30e21 a4f52ad5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1348,7 +1348,7 @@ public final class InputMethodManager {
        synchronized (mH) {
            if (DEBUG) Log.v(TAG, "onViewDetachedFromWindow: view=" + dumpViewInfo(view)
                    + " mServedView=" + dumpViewInfo(mServedView));
            if (mServedView == view && view.hasWindowFocus()) {
            if (mServedView == view) {
                mNextServedView = null;
                scheduleCheckFocusLocked(view);
            }