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

Commit 744e6e51 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

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

    /**