commit | 249b3e26fd0d499083fdcd09f387f40f0d65aac1 | [log] [tgz] |
---|---|---|
author | Danny Burakov <burakov@google.com> | Thu Nov 09 22:25:09 2023 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Nov 09 22:25:09 2023 +0000 |
tree | 67a39b6391c550072131dd05d722fb74e98e44b5 | |
parent | 9bf462d4b208b0c3b9c6583c8168b63563981a06 [diff] | |
parent | dea4fdcf28b8ed1f45136d3727eb92c83145e3b7 [diff] |
Merge "[Flexiglass] Fix failing test in `BouncerActionButtonInteractorTest`." into main
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/DismissView.kt b/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/DismissView.kt index 2eb55e1..9094739 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/DismissView.kt +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/DismissView.kt
@@ -167,7 +167,11 @@ animator .spring(DynamicAnimation.TRANSLATION_Y, height.toFloat(), spring) - .withEndActions({ setVisibility(View.INVISIBLE) }) + .withEndActions({ + visibility = View.INVISIBLE + circle.scaleX = 1f + circle.scaleY = 1f + }) .start() }