From 34582e7836a3778f6b8c727c09888cc64061cd9c Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Wed, 23 Mar 2022 13:49:32 +0000 Subject: [PATCH] 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 --- .../notification/row/NotificationBackgroundView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationBackgroundView.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationBackgroundView.java index c640ab6c3a903..7d0f00abcc98e 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationBackgroundView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationBackgroundView.java @@ -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(); }