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

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

Merge "Fixed an issue where notification groups could be empty" into qt-dev

am: 8af0af88

Change-Id: Ieb656d28ccfbc743f2061144079c910d5bd20097
parents 5dad11f8 8af0af88
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2021,10 +2021,10 @@ public class ExpandableNotificationRow extends ActivatableNotificationView
    private void updateChildrenVisibility() {
        boolean hideContentWhileLaunching = mExpandAnimationRunning && mGuts != null
                && mGuts.isExposed();
        mPrivateLayout.setVisibility(!shouldShowPublic() && !mIsSummaryWithChildren
        mPrivateLayout.setVisibility(!mShowingPublic && !mIsSummaryWithChildren
                && !hideContentWhileLaunching ? VISIBLE : INVISIBLE);
        if (mChildrenContainer != null) {
            mChildrenContainer.setVisibility(!shouldShowPublic() && mIsSummaryWithChildren
            mChildrenContainer.setVisibility(!mShowingPublic && mIsSummaryWithChildren
                    && !hideContentWhileLaunching ? VISIBLE
                    : INVISIBLE);
        }