diff options
| author | 2022-03-23 13:49:32 +0000 | |
|---|---|---|
| committer | 2022-04-06 09:23:04 +0000 | |
| commit | 34582e7836a3778f6b8c727c09888cc64061cd9c (patch) | |
| tree | 7308a736ea8b5d80853d4cb2faebce49a6396051 | |
| parent | 5e230aef5efaa3b2e9682e47c6c79a7c7f0f92a0 (diff) | |
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
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationBackgroundView.java | 4 |
1 files 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 c640ab6c3a90..7d0f00abcc98 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(); } |