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

Commit f0b39049 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: I1f0aea3e12718772358e8e7c0d88d4ba5cbbd335
parents c1b4a300 c10f3c1c
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;
    }

    /**