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

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

Merge "Fixed a bug where Notifications could overlap" into nyc-dev

am: fa2dc635

* commit 'fa2dc635':
  Fixed a bug where Notifications could overlap

Change-Id: Ie14bc70cd6e3cb9c2b7c9f3ca64cb9ebd28820d1
parents b201170c fa2dc635
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2342,9 +2342,9 @@ public class NotificationStackScrollLayout extends ViewGroup
    }

    private void updateHideSensitiveForChild(View child) {
        if (mAmbientState.isHideSensitive() && child instanceof ExpandableView) {
        if (child instanceof ExpandableView) {
            ExpandableView expandableView = (ExpandableView) child;
            expandableView.setHideSensitiveForIntrinsicHeight(true);
            expandableView.setHideSensitiveForIntrinsicHeight(mAmbientState.isHideSensitive());
        }
    }