Merge "Fix divider bar not shown when entering split with rotation transition" into tm-dev am: 01eda66340

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18247768

Change-Id: Ie47270646ab4cf71e6c6256f972db8c9c8eb63e0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Jerry Chang
2022-05-11 02:17:30 +00:00
committed by Automerger Merge Worker

View File

@@ -980,6 +980,9 @@ class StageCoordinator implements SplitLayout.SplitLayoutHandler,
updateUnfoldBounds(); updateUnfoldBounds();
return; return;
} }
// Clear the divider remote animating flag as the divider will be re-rendered to apply
// the new rotation config.
mIsDividerRemoteAnimating = false;
mSplitLayout.update(null /* t */); mSplitLayout.update(null /* t */);
onLayoutSizeChanged(mSplitLayout); onLayoutSizeChanged(mSplitLayout);
} }