[automerge] Fixed an issue where notification launches were visually broken 2p: 34582e7836

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


Change-Id: I4508760d37d5f75bcaa96391aa8f23ec2137a433
Merged-In: I9e2f8ae64e3b4693df97bb05fc850209d6eb3597
This commit is contained in:
Selim Cinek
2022-04-06 09:23:14 +00:00
committed by Presubmit Automerger Backend

View File

@@ -270,8 +270,8 @@ public class NotificationBackgroundView extends View {
/** Set the current expand animation size. */
public void setExpandAnimationSize(int width, int height) {
mExpandAnimationHeight = width;
mExpandAnimationWidth = height;
mExpandAnimationHeight = height;
mExpandAnimationWidth = width;
invalidate();
}