Merge "Always set the top roundness of child rows to 0." into tm-d1-dev am: b86b71823f

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/19501101

Change-Id: Ie0b3ae0531817829251af40f93c61dc8c8098568
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
TreeHugger Robot
2022-08-03 19:22:23 +00:00
committed by Automerger Merge Worker

View File

@@ -1312,6 +1312,7 @@ public class NotificationChildrenContainer extends ViewGroup
} }
float bottomRoundness = last ? currentBottomRoundness : 0.0f; float bottomRoundness = last ? currentBottomRoundness : 0.0f;
child.setBottomRoundness(bottomRoundness, isShown() /* animate */); child.setBottomRoundness(bottomRoundness, isShown() /* animate */);
child.setTopRoundness(0.0f, false /* animate */);
last = false; last = false;
} }
} }