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

Commit e79e4cc2 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: f0b39049

Change-Id: Ib296879693ea2da98d818462dfe9570141557c56
parents 4052a281 f0b39049
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;
    }

    /**