| Index: sky/sdk/lib/framework/widgets/ink_well.dart
|
| diff --git a/sky/sdk/lib/framework/widgets/ink_well.dart b/sky/sdk/lib/framework/widgets/ink_well.dart
|
| index 48188f52a93897b1827a7a7cb3224e805dfb5489..8edc619666f2980d68b274f5de005c3eb2fe7091 100644
|
| --- a/sky/sdk/lib/framework/widgets/ink_well.dart
|
| +++ b/sky/sdk/lib/framework/widgets/ink_well.dart
|
| @@ -53,7 +53,7 @@ class InkSplash {
|
| well.markNeedsPaint();
|
| }
|
|
|
| - void paint(RenderObjectDisplayList canvas) {
|
| + void paint(sky.Canvas canvas) {
|
| int opacity = (_kSplashInitialOpacity * (1.0 - (_radius.value / _targetRadius))).floor();
|
| sky.Paint paint = new sky.Paint()..color = new sky.Color(opacity << 24);
|
| canvas.drawCircle(position.x, position.y, _radius.value, paint);
|
| @@ -88,7 +88,7 @@ class RenderInkWell extends RenderProxyBox {
|
| markNeedsPaint();
|
| }
|
|
|
| - void paint(RenderObjectDisplayList canvas) {
|
| + void paint(sky.Canvas canvas) {
|
| if (!_splashes.isEmpty) {
|
| canvas.save();
|
| canvas.clipRect(new Rect.fromSize(size));
|
|
|