| Index: sky/sdk/lib/framework/components2/radio.dart
|
| diff --git a/sky/sdk/lib/framework/components2/radio.dart b/sky/sdk/lib/framework/components2/radio.dart
|
| index 33d4fb2e26c54d174e95f01fbed120d93c586dc6..35aebacc31c1edeeaff19532c0463e4fac395211 100644
|
| --- a/sky/sdk/lib/framework/components2/radio.dart
|
| +++ b/sky/sdk/lib/framework/components2/radio.dart
|
| @@ -41,13 +41,13 @@ class Radio extends ButtonBase {
|
| sky.Paint paint = new sky.Paint()..color = color;
|
|
|
| // Draw the outer circle
|
| - paint.style = 1; // SkPaint::STROKE_STYLE;
|
| + paint.setStyle(sky.PaintingStyle.stroke);
|
| paint.strokeWidth = 2.0;
|
| canvas.drawCircle(outerRadius, outerRadius, outerRadius, paint);
|
|
|
| // Draw the inner circle
|
| if (value == groupValue) {
|
| - paint.style = 0; // SkPaint::FILL_STYLE;
|
| + paint.setStyle(sky.PaintingStyle.fill);
|
| canvas.drawCircle(outerRadius, outerRadius, innerRadius, paint);
|
| }
|
| }
|
|
|