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

Commit b3483433 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Dispatching display list recreations also to transient views" into pi-dev

am: 036a2409

Change-Id: I2efbf117542eda421fa5e263b8b8a410b2b29a65
parents d40f3061 036a2409
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -4285,6 +4285,13 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
                recreateChildDisplayList(child);
            }
        }
        final int transientCount = mTransientViews == null ? 0 : mTransientIndices.size();
        for (int i = 0; i < transientCount; ++i) {
            View child = mTransientViews.get(i);
            if (((child.mViewFlags & VISIBILITY_MASK) == VISIBLE || child.getAnimation() != null)) {
                recreateChildDisplayList(child);
            }
        }
        if (mOverlay != null) {
            View overlayView = mOverlay.getOverlayView();
            recreateChildDisplayList(overlayView);