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

This commit is contained in:
Rob Carr
2021-06-28 17:47:31 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}
}