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

Commit 8a8885b9 authored by Adrian Roos's avatar Adrian Roos Committed by Android Git Automerger
Browse files

am def6896d: Fix shifted wallpaper after OTA

* commit 'def6896d':
  Fix shifted wallpaper after OTA
parents 414985c4 def6896d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1589,8 +1589,6 @@ class WindowStateAnimator {
        final int left = ((int) shownFrame.left) - attrs.surfaceInsets.left;
        final int top = ((int) shownFrame.top) - attrs.surfaceInsets.top;
        if (mSurfaceX != left || mSurfaceY != top) {
            mSurfaceX = left;
            mSurfaceY = top;
            if (mAnimating) {
                // If this window (or its app token) is animating, then the position
                // of the surface will be re-computed on the next animation frame.
@@ -1598,6 +1596,8 @@ class WindowStateAnimator {
                // transformation is being applied by the animation.
                return;
            }
            mSurfaceX = left;
            mSurfaceY = top;
            if (SHOW_LIGHT_TRANSACTIONS) Slog.i(TAG, ">>> OPEN TRANSACTION setWallpaperOffset");
            SurfaceControl.openTransaction();
            try {