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

Commit faecd09c authored by Craig Mautner's avatar Craig Mautner Committed by Android (Google) Code Review
Browse files

Merge "Only consider hiddenRequested when deciding layout" into jb-mr1-dev

parents 4f77268c c516a5c5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -806,7 +806,7 @@ final class WindowState implements WindowManagerPolicy.WindowState {
        return mViewVisibility == View.GONE
                || !mRelayoutCalled
                || (atoken == null && mRootToken.hidden)
                || (atoken != null && (atoken.hiddenRequested || atoken.hidden))
                || (atoken != null && atoken.hiddenRequested)
                || mAttachedHidden
                || mExiting || mDestroying;
    }