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

Commit 091eb30c authored by Rob Carr's avatar Rob Carr Committed by Automerger Merge Worker
Browse files

Merge "WindowState: Correct simple scaling error" into sc-dev am: 52b8c918

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15114870

Change-Id: I56349c4967a77f5eb0f53b07aa3c9b7e1a34fdc1
parents eef295b6 52b8c918
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5477,8 +5477,8 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
            getPendingTransaction().setMatrix(getSurfaceControl(),
                newHScale, 0, 0, newVScale);
            mLastGlobalScale = mGlobalScale;
            mLastHScale = mHScale;
            mLastVScale = mVScale;
            mLastHScale = newHScale;
            mLastVScale = newVScale;
        }
    }