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

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

Merge "Fix bug in translating the outline of a notification."

parents f3ac4338 794cfbfa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ public abstract class ExpandableOutlineView extends ExpandableView {
    private final ViewOutlineProvider mProvider = new ViewOutlineProvider() {
        @Override
        public void getOutline(View view, Outline outline) {
            int translation = mShouldTranslateContents ? 0 : (int) getTranslation();
            int translation = mShouldTranslateContents ? (int) getTranslation() : 0;
            if (!mCustomOutline) {
                outline.setRoundRect(translation,
                        mClipTopAmount,