commit | 9bf462d4b208b0c3b9c6583c8168b63563981a06 | [log] [tgz] |
---|---|---|
author | Liran Binyamin <liranb@google.com> | Thu Nov 09 22:22:08 2023 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Nov 09 22:22:08 2023 +0000 |
tree | 3385b68ea9679f44a9820a2ac58cbc4732f22c5e | |
parent | dcf48101eb67999ac7b12618ff59fb004a8edaea [diff] | |
parent | d2dbb6df681735282793cd196d3e5a1711547e72 [diff] |
Merge "Fix dismiss target magnetization" 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() }