Fixed an issue where notification launches were visually broken

The background width and height were inverted leading to oddity

Fixes: 219436432
Change-Id: I9e2f8ae64e3b4693df97bb05fc850209d6eb3597
Merged-In: I9e2f8ae64e3b4693df97bb05fc850209d6eb3597
This commit is contained in:
Selim Cinek
2022-03-23 13:49:32 +00:00
parent 5e230aef5e
commit 34582e7836

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();
}