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

Commit 2e794c17 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE" into main

parents 76ed00ed b884d90e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -763,7 +763,7 @@ public class ScrimController implements ViewTreeObserver.OnPreDrawListener, Dump
     * Sets the amount of vertical over scroll that should be performed on the notifications scrim.
     * Sets the amount of vertical over scroll that should be performed on the notifications scrim.
     */
     */
    public void setNotificationsOverScrollAmount(int overScrollAmount) {
    public void setNotificationsOverScrollAmount(int overScrollAmount) {
        mNotificationsScrim.setTranslationY(overScrollAmount);
        if (mNotificationsScrim != null) mNotificationsScrim.setTranslationY(overScrollAmount);
    }
    }


    /**
    /**