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

Commit 295609a9 authored by Selim Cinek's avatar Selim Cinek Committed by Android (Google) Code Review
Browse files

Merge "Delayed the highlighting of the statusbar header on drag down." into lmp-preview-dev

parents 32b5f7a0 c0ce82da
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -307,4 +307,9 @@ public class StatusBarHeaderView extends RelativeLayout implements View.OnClickL
            mBrightnessContainer.animate().alpha(showingDetail ? 0 : 1).withLayer().start();
        }
    };

    @Override
    public boolean shouldDelayChildPressedState() {
        return true;
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -1835,6 +1835,11 @@ public class NotificationStackScrollLayout extends ViewGroup
        return super.dispatchTouchEvent(ev);
    }

    @Override
    public boolean shouldDelayChildPressedState() {
        return true;
    }

    /**
     * A listener that is notified when some child locations might have changed.
     */