summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2022-08-03 19:00:41 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2022-08-03 19:00:41 +0000
commitb86b71823f1388ae80f54c6a6d3da2ab0c8c2ac1 (patch)
treee487bccaa5b0c8bc9c98e1d6813d3ac4e6de414f
parent6b3f5537dc5244604233d2f536d0874c38787f56 (diff)
parent16186884ecaa1650d57fcca7d46394a80bcd3c2c (diff)
downloadbase-b86b71823f1388ae80f54c6a6d3da2ab0c8c2ac1.tar.gz
Merge "Always set the top roundness of child rows to 0." into tm-d1-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationChildrenContainer.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationChildrenContainer.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationChildrenContainer.java
index a552f999aeb4..a76f0827fc18 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationChildrenContainer.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationChildrenContainer.java
@@ -1312,6 +1312,7 @@ public class NotificationChildrenContainer extends ViewGroup
}
float bottomRoundness = last ? currentBottomRoundness : 0.0f;
child.setBottomRoundness(bottomRoundness, isShown() /* animate */);
+ child.setTopRoundness(0.0f, false /* animate */);
last = false;
}
}