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

Commit 4999b789 authored by Chet Haase's avatar Chet Haase Committed by Android Git Automerger
Browse files

am a37758c8: am 62a7327e: am 326c443e: am 66287788: Merge "Avoid drawing the...

am a37758c8: am 62a7327e: am 326c443e: am 66287788: Merge "Avoid drawing the starting window twice" into lmp-dev

* commit 'a37758c8c96b472ee09c67638f518c124be1bf75':
  Avoid drawing the starting window twice
parents 40f6384b b4c61019
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1373,7 +1373,8 @@ final class WindowState implements WindowManagerPolicy.WindowState {
            final Rect stableInsets = mLastStableInsets;
            final boolean reportDraw = mWinAnimator.mDrawState == WindowStateAnimator.DRAW_PENDING;
            final Configuration newConfig = configChanged ? mConfiguration : null;
            if (mClient instanceof IWindow.Stub) {
            if (mAttrs.type != WindowManager.LayoutParams.TYPE_APPLICATION_STARTING
                    && mClient instanceof IWindow.Stub) {
                // To prevent deadlock simulate one-way call if win.mClient is a local object.
                mService.mH.post(new Runnable() {
                    @Override