Commit 270e3863 authored by Hixie's avatar Hixie

Fix compilation errors in render-sector.dart

TBR=abarth

Review URL: https://codereview.chromium.org/1153273002
parent 36baaf53
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment