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

Commit ec476139 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...

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

Change-Id: If7ff071c2715f548293b50bfd994275ad2c71602
parents 1380ef51 21b081b7
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;
    }

    /**