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

Commit 0c4f2835 authored by Grace Cheng's avatar Grace Cheng Committed by Android (Google) Code Review
Browse files

Merge "Remove isAttached check from lottie listener" into 24D1-dev

parents c2f3a271 403714d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -323,7 +323,7 @@ constructor(
        )
        lottie.addLottieOnCompositionLoadedListener {
            // Check that view is not stale, and that overlayView has not been hidden/removed
            if (overlayView?.isAttachedToWindow == true && overlayView == view) {
            if (overlayView != null && overlayView == view) {
                updateOverlayParams(display, it.bounds)
            }
        }