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

Commit 0b7bceb7 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "sysui: fix notification background position"

parents 406762d3 96921b66
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1835,8 +1835,9 @@ public class NotificationStackScrollLayout extends ViewGroup
     * Update the background bounds to the new desired bounds
     */
    private void updateBackgroundBounds() {
        mBackgroundBounds.left = (int) getX();
        mBackgroundBounds.right = (int) (getX() + getWidth());
        getLocationInWindow(mTempInt2);
        mBackgroundBounds.left = mTempInt2[0];
        mBackgroundBounds.right = mTempInt2[0] + getWidth();
        if (!mIsExpanded) {
            mBackgroundBounds.top = 0;
            mBackgroundBounds.bottom = 0;