Merge "Fixed an issue where notification launches were visually broken" into tm-dev

This commit is contained in:
Selim Cinek
2022-04-07 08:37:52 +00:00
committed by Android (Google) Code Review

View File

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