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

Commit 9145366d authored by Adrian Roos's avatar Adrian Roos Committed by android-build-merger
Browse files

Merge \\"A11y: Fix notification bounds when top notification is scrolled\\"...

Merge \\"A11y: Fix notification bounds when top notification is scrolled\\" into nyc-dev am: 2e0aadf2
am: 9243f383

Change-Id: I4a6e6bd61f8bd64337671cef99239fd90293585c
parents 1765d258 9243f383
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -305,6 +305,10 @@ public abstract class ExpandableView extends FrameLayout {
    @Override
    public void getBoundsOnScreen(Rect outRect, boolean clipToParent) {
        super.getBoundsOnScreen(outRect, clipToParent);
        if (getTop() + getTranslationY() < 0) {
            // We got clipped to the parent here - make sure we undo that.
            outRect.top += getTop() + getTranslationY();
        }
        outRect.bottom = outRect.top + getActualHeight();
        outRect.top += getClipTopAmount();
    }