diff options
| author | 2024-10-04 13:59:10 +0000 | |
|---|---|---|
| committer | 2024-10-04 13:59:10 +0000 | |
| commit | 2f120f9039fb8288f2cecaa94bb9e5040e4234fc (patch) | |
| tree | 77c348d0b27bc3855f3cfe5187b055ce5b4a61e3 | |
| parent | 95ed338aa594a72b2efe25504fe596ea3a205f6f (diff) | |
Dump ExpandableView clip bounds
Applying a clipping bound to the notification row would be one more way
to get to the "empty space in shade" state, and yet it is not included
in the bugreports.
Bug: 369608449
Test: dumpsysui NotificationStackScrollLayout
Flag: EXEMPT changing dumps only
Change-Id: I3ea395555dd0005701a3ffc71ba58dcb62fcc6e3
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java index afda4262bf9d..3a2d2795d874 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableView.java @@ -862,8 +862,8 @@ public abstract class ExpandableView extends FrameLayout implements Dumpable, Ro pw.println("mClipToActualHeight: " + mClipToActualHeight); pw.println("mExtraWidthForClipping: " + mExtraWidthForClipping); pw.println("mMinimumHeightForClipping: " + mMinimumHeightForClipping); - pw.println("getClipBounds(): " + getClipBounds()); } + pw.println("getClipBounds(): " + getClipBounds()); }); } |