Commit e3d0e7c7 by Orkhan Alikhanov

Fixed MotionViewTransition animations were not removed

Removing animations is done through accessing animations
on animator which was cleaned before the access. Fixed by
swapping order of method calls
parent 64b831e4
......@@ -131,8 +131,8 @@ private extension MotionViewTransition {
/// Finalizes the transition.
func complete() {
clean()
removeAnimations()
clean()
}
/// Resets the transition.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment