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

Commit 5bf2802a authored by Xavier Ducrohet's avatar Xavier Ducrohet
Browse files

Fix broken drawCircle LayoutLib.

Change-Id: I5e23bbe0119e385fa2f77854a8f88128351d3759
parent 170bfe32
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -717,7 +717,7 @@ public final class Canvas_Delegate {
    /*package*/ static void native_drawCircle(int nativeCanvas,
            float cx, float cy, float radius, int paint) {
        native_drawOval(nativeCanvas,
                new RectF(cx - radius, cy - radius, radius, radius),
                new RectF(cx - radius, cy - radius, cx + radius, cy + radius),
                paint);
    }