Merge "Don't try to sync wallpapers" into tm-qpr-dev am: bae4b41c08

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

Change-Id: I01878aa57758c998274de5757bd5e9298ce99b20
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Evan Rosky
2022-07-27 16:22:57 +00:00
committed by Automerger Merge Worker

View File

@@ -5928,6 +5928,10 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
if (!super.prepareSync()) { if (!super.prepareSync()) {
return false; return false;
} }
if (mIsWallpaper) {
// TODO(b/233286785): Add sync support to wallpaper.
return false;
}
// In the WindowContainer implementation we immediately mark ready // In the WindowContainer implementation we immediately mark ready
// since a generic WindowContainer only needs to wait for its // since a generic WindowContainer only needs to wait for its
// children to finish and is immediately ready from its own // children to finish and is immediately ready from its own