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

Commit b01c33a7 authored by Beth Thibodeau's avatar Beth Thibodeau Committed by Android (Google) Code Review
Browse files

Merge "Fix stray AOD animation" into sc-dev

parents 343684b5 1564e02c
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -660,16 +660,12 @@ class MediaHierarchyManager @Inject constructor(
            return true
        }

        if (statusbarState == StatusBarState.KEYGUARD) {
            if (currentLocation == LOCATION_LOCKSCREEN &&
                previousLocation == LOCATION_QS ||
                (currentLocation == LOCATION_QS &&
        if (statusbarState == StatusBarState.KEYGUARD && (currentLocation == LOCATION_LOCKSCREEN ||
                        previousLocation == LOCATION_LOCKSCREEN)) {
            // We're always fading from lockscreen to keyguard in situations where the player
            // is already fully hidden
            return false
        }
        }
        return mediaFrame.isShownNotFaded || animator.isRunning || animationPending
    }