| Index: sky/examples/raw/sector-layout.dart
|
| diff --git a/sky/examples/raw/sector-layout.dart b/sky/examples/raw/sector-layout.dart
|
| index 825663843c8cb1cbc492529ad7b678baf5c95842..3b6d388edf96a9d4819d3d89489904e424d960de 100644
|
| --- a/sky/examples/raw/sector-layout.dart
|
| +++ b/sky/examples/raw/sector-layout.dart
|
| @@ -94,7 +94,6 @@ abstract class RenderSector extends RenderNode {
|
| }
|
|
|
| class RenderDecoratedSector extends RenderSector {
|
| - BoxDecoration _decoration;
|
|
|
| RenderDecoratedSector(BoxDecoration decoration) : _decoration = decoration;
|
|
|
| @@ -512,9 +511,9 @@ class RenderSolidColor extends RenderDecoratedSector {
|
|
|
| void handlePointer(sky.PointerEvent event) {
|
| if (event.type == 'pointerdown')
|
| - setBoxDecoration(new BoxDecoration(backgroundColor: 0xFFFF0000));
|
| + decoration = new BoxDecoration(backgroundColor: 0xFFFF0000);
|
| else if (event.type == 'pointerup')
|
| - setBoxDecoration(new BoxDecoration(backgroundColor: backgroundColor));
|
| + decoration = new BoxDecoration(backgroundColor: backgroundColor);
|
| }
|
| }
|
|
|
|
|