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

Commit 084c16b8 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a clipping bug when expanding children notification

When children are expanded with a finger we still need to clip!

Change-Id: Ie66bb0ba690163bcabdc503a03f1e23869ec175d
parent eb12d194
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -652,8 +652,8 @@ public class ExpandableNotificationRow extends ActivatableNotificationView {

    @Override
    public void setClipToActualHeight(boolean clipToActualHeight) {
        super.setClipToActualHeight(clipToActualHeight);
        getShowingLayout().setClipToActualHeight(clipToActualHeight);
        super.setClipToActualHeight(clipToActualHeight || isUserLocked());
        getShowingLayout().setClipToActualHeight(clipToActualHeight || isUserLocked());
    }

    /**