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

Commit 703b5cac 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...

Merge "Fixed an issue where notification groups could be empty" into qt-dev am: 8af0af88 am: c61e4a12
am: 63f1624c

Change-Id: Ica64276f2fda00d12759a9d8efbaa40c529bb8f3
parents dabb85fa 63f1624c
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);
        }