diff options
| author | 2024-10-16 09:45:32 +0000 | |
|---|---|---|
| committer | 2024-10-16 13:23:28 +0000 | |
| commit | 8c104d51b649ea14a846b5320490be88a2380cff (patch) | |
| tree | 8b500ed6682ab053acdd02b3248c19368aac5938 | |
| parent | cdb99b7641738d6e3e5a9afb8391af7b22d25166 (diff) | |
Fix-forward for breakage introduced in b/29732496.
Fix: 373281882
Flag: EXEMPT fix-forward
Test: manual
Change-Id: I2ce1ecd1617be3c3c8208222267a50ea39de80b1
| -rw-r--r-- | packages/SystemUI/animation/src/com/android/systemui/animation/TransitionAnimator.kt | 2 | ||||
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/systemui/animation/TransitionAnimatorTest.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/animation/src/com/android/systemui/animation/TransitionAnimator.kt b/packages/SystemUI/animation/src/com/android/systemui/animation/TransitionAnimator.kt index 1d8ff77ac719..80143cb69b5a 100644 --- a/packages/SystemUI/animation/src/com/android/systemui/animation/TransitionAnimator.kt +++ b/packages/SystemUI/animation/src/com/android/systemui/animation/TransitionAnimator.kt @@ -453,8 +453,8 @@ class TransitionAnimator( endState: State, windowBackgroundLayer: GradientDrawable, fadeWindowBackgroundLayer: Boolean = true, - useSpring: Boolean = false, drawHole: Boolean = false, + useSpring: Boolean = false, ): Animation { val transitionContainer = controller.transitionContainer val transitionContainerOverlay = transitionContainer.overlay diff --git a/packages/SystemUI/tests/src/com/android/systemui/animation/TransitionAnimatorTest.kt b/packages/SystemUI/tests/src/com/android/systemui/animation/TransitionAnimatorTest.kt index 8b427fbc5fb8..071acfa44650 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/animation/TransitionAnimatorTest.kt +++ b/packages/SystemUI/tests/src/com/android/systemui/animation/TransitionAnimatorTest.kt @@ -156,7 +156,7 @@ class TransitionAnimatorTest(val useSpring: Boolean) : SysuiTestCase() { createEndState(transitionContainer), backgroundLayer, fadeWindowBackgroundLayer, - useSpring, + useSpring = useSpring, ) } |