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

Commit 88f78357 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix missing in-window launcher animation in flexiglass." into main

parents 16a7dc60 fdc1167a
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -86,11 +86,10 @@ constructor(
            // crashes, etc.) the worst case is that we fall back to the normal unlock animation (or
            // unnecessarily play the animation on Launcher when there's an app over it), which is
            // not a big deal.
            transitionInteractor.currentKeyguardState
                .map { it != GONE }
            transitionInteractor.isCurrentlyIn(Scenes.Gone, GONE)
                .distinctUntilChanged()
                .collect { notOnGone ->
                    if (notOnGone) {
                .collect { gone ->
                    if (!gone) {
                        updateIsLauncherUnderneath()
                    }
                }