Merge "Correct parameter order when calling setCustomAnimation." into udc-dev

This commit is contained in:
Wei Sheng Shih
2023-04-07 06:29:26 +00:00
committed by Android (Google) Code Review

View File

@@ -286,8 +286,8 @@ class BackNavigationController {
currentActivity.getCustomAnimation(false/* open */);
if (customAppTransition != null) {
infoBuilder.setCustomAnimation(currentActivity.packageName,
customAppTransition.mExitAnim,
customAppTransition.mEnterAnim,
customAppTransition.mExitAnim,
customAppTransition.mBackgroundColor);
}
}