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

Commit 18d836b6 authored by Craig Mautner's avatar Craig Mautner Committed by Android (Google) Code Review
Browse files

Merge "Don't relayout based on a window that isn't visible" into lmp-mr1-modular-dev

parents 33bb70d6 082500c7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -542,9 +542,9 @@ class WindowStateAnimator {
        mDrawState = READY_TO_SHOW;
        final AppWindowToken atoken = mWin.mAppToken;
        if (atoken == null || atoken.allDrawn || mWin.mAttrs.type == TYPE_APPLICATION_STARTING) {
            performShowLocked();
            return performShowLocked();
        }
        return true;
        return false;
    }

    static class SurfaceTrace extends SurfaceControl {