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

Commit cd836bbb authored by Xavier Ducrohet's avatar Xavier Ducrohet Committed by Android (Google) Code Review
Browse files

Merge "Fix broken drawCircle LayoutLib."

parents e988e0c3 5bf2802a
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);
    }