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

Commit 0c4d9deb authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Merge "Refine condition for starting window skip" into oc-dr1-dev am: 612de053

am: 7269de21

Change-Id: I1b5517489afa3da6c767bea99122a7c7fa05c3a1
parents 38b792be 7269de21
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -487,9 +487,8 @@ public class AppWindowContainerController
            }

            final WindowState mainWin = mContainer.findMainWindow();
            if (mainWin != null && mainWin.isVisible() && mainWin.isDrawnLw()) {
                // App already has a visible window that is drawn...why would you want a starting
                // window?
            if (mainWin != null && mainWin.mWinAnimator.getShown()) {
                // App already has a visible window...why would you want a starting window?
                return false;
            }