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

Commit 7b563413 authored by Linus Tufvesson's avatar Linus Tufvesson Committed by Automerger Merge Worker
Browse files

Merge "Exclude TYPE_PRIVATE_PRESENTATION app visiblity" into sc-v2-dev am: 80b9d0eb

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16357600

Change-Id: I788abca9d15af2686ab094d7a7c495577634b42c
parents e177a637 80b9d0eb
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3614,7 +3614,10 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
        }
        // Exclude toast because legacy apps may show toast window by themselves, so the misused
        // apps won't always be considered as foreground state.
        if (mAttrs.type >= FIRST_SYSTEM_WINDOW && mAttrs.type != TYPE_TOAST) {
        // Exclude private presentations as they can only be shown on private virtual displays and
        // shouldn't be the cause of an app be considered foreground.
        if (mAttrs.type >= FIRST_SYSTEM_WINDOW && mAttrs.type != TYPE_TOAST
                && mAttrs.type != TYPE_PRIVATE_PRESENTATION) {
            mWmService.mAtmService.mActiveUids.onNonAppSurfaceVisibilityChanged(mOwnerUid, shown);
        }
        if (mIsImWindow && mWmService.mAccessibilityController.hasCallbacks()) {