Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6205551d authored by Wei Sheng Shih's avatar Wei Sheng Shih Committed by Android (Google) Code Review
Browse files

Merge "Prevent undisplayed splash screen from hanging in Shell." into main

parents 422b6a76 269195b3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -370,7 +370,8 @@ class SplashscreenWindowCreator extends AbsSplashWindowCreator {

    private void removeWindowInner(@NonNull View decorView, boolean hideView) {
        requestTopUi(false);
        if (!decorView.isAttachedToWindow()) {
        if (decorView.getParent() == null) {
            Slog.w(TAG, "This root view has no parent, never been added to a ViewRootImpl?");
            return;
        }
        if (hideView) {