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

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

Merge "Fixed a bug where the outline was not correctly updated"

parents 627aad9c 61571f14
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -10633,8 +10633,9 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
        } else {
            // always copy the path since caller may reuse
            if (mOutline == null) {
                mOutline = new Outline(outline);
                mOutline = new Outline();
            }
            mOutline.set(outline);
        }
        mRenderNode.setOutline(mOutline);
    }