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

Commit 21b081b7 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Merge "If window isn't requested to be visible, don't consider it" into qt-dev am: c10f3c1c

am: 744e6e51

Change-Id: I72424e93a6e94b18b135175a6a024ff7e1d31bfc
parents 4052a281 744e6e51
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1558,7 +1558,8 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
     */
    boolean isInteresting() {
        return mAppToken != null && !mAppDied
                && (!mAppToken.isFreezingScreen() || !mAppFreezing);
                && (!mAppToken.isFreezingScreen() || !mAppFreezing)
                && mViewVisibility == View.VISIBLE;
    }

    /**