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

Commit 61571f14 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where the outline was not correctly updated

The outline was not correctly copied to the field when it already
existed.

Change-Id: I02a7006f7ceff9241b1c52c73ea159c59aa7464e
parent 2e9c300b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -10585,8 +10585,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);
    }