diff options
| author | 2022-10-18 21:15:28 +0000 | |
|---|---|---|
| committer | 2022-10-18 21:15:28 +0000 | |
| commit | 90a1e4572015e974bec37fca586d6d2031b1df6e (patch) | |
| tree | 91e0a0a1e16298727930adaa33be5b99148e7b4a | |
| parent | d155a1a49a1f24303277352bb62f0437852951cc (diff) | |
| parent | 0777c599ec882e61a19067636ac0e87b6b408682 (diff) | |
Merge "Fix DialogLaunchAnimation perf regression" into tm-qpr-dev am: 82d1e9910a am: 0777c599ec
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20225163
Change-Id: I7dad0a12f4ed236a18091c8c0e24c391cb5ae0a0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | packages/SystemUI/animation/src/com/android/systemui/animation/DialogLaunchAnimator.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/animation/src/com/android/systemui/animation/DialogLaunchAnimator.kt b/packages/SystemUI/animation/src/com/android/systemui/animation/DialogLaunchAnimator.kt index 23cee4d0972d..ca36fa43da76 100644 --- a/packages/SystemUI/animation/src/com/android/systemui/animation/DialogLaunchAnimator.kt +++ b/packages/SystemUI/animation/src/com/android/systemui/animation/DialogLaunchAnimator.kt @@ -865,7 +865,7 @@ private class AnimatedDialog( return } - ViewRootSync.synchronizeNextDraw(decorView, controller.viewRoot.view, then) + ViewRootSync.synchronizeNextDraw(controller.viewRoot.view, decorView, then) decorView.invalidate() controller.viewRoot.view.invalidate() } |