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

Commit 33525392 authored by Steve Elliott's avatar Steve Elliott Committed by Android (Google) Code Review
Browse files

Merge "Don't clip bundle onboarding" into main

parents 251e0905 e78eb2fd
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -1535,14 +1535,11 @@ public class NotificationStackScrollLayout
                // we never overlap / clip the shelf
                continue;
            }
            boolean canClip = true;
            boolean canClip = !child.isBackgroundOpaque();
            if (child instanceof ExpandableNotificationRow row) {
                if (row.isChildInGroup()) {
                if (canClip && row.isChildInGroup()) {
                    canClip = canClipChildRow(row);
                }
                if (row.isBackgroundOpaque()) {
                    canClip = false;
                }
                // handle the notGoneIndex for the children as well
                List<ExpandableNotificationRow> children = row.getAttachedChildren();
                if (row.isSummaryWithChildren() && children != null) {
+5 −0
Original line number Diff line number Diff line
@@ -126,6 +126,11 @@ public class OnboardingAffordanceView extends StackScrollerDecorView implements
        // no-op
    }

    @Override
    public boolean isBackgroundOpaque() {
        return true;
    }

    @Override
    public void onActivityLaunchAnimationEnd() {
        if (mOnActivityLaunchEndListener != null) {