Skip to content
Snippets Groups Projects
Commit 5b95398f authored by Maryam Dehaini's avatar Maryam Dehaini
Browse files

Remove animation listeners on cancel

AnimationSet#removeAllListeners does not remove the animations of the
child animators. When we cancel the maximzie window progress animator,
we need the onEnd listener to be cancelled so that the maximize window
does not open.

Bug: 327677202
Test: Exit maximize window before progress animation is complete.
Maximize menu should not open.

Change-Id: Iec5c192b58d8fea7465aca05e6f4543d04851fbc
parent 592fca97
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ class MaximizeButtonView(
}
fun cancelHoverAnimation() {
hoverProgressAnimatorSet.removeAllListeners()
hoverProgressAnimatorSet.childAnimations.forEach { it.removeAllListeners() }
hoverProgressAnimatorSet.cancel()
progressBar.visibility = View.INVISIBLE
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment