| Index: sky/examples/widgets/spinning_mixed.dart
|
| diff --git a/sky/examples/widgets/spinning_mixed.dart b/sky/examples/widgets/spinning_mixed.dart
|
| index 324d0429726d631f8f1f2e194ea0da25bf87f6f8..e75b36c9156822c85b00771fd6004369dcf29ab2 100644
|
| --- a/sky/examples/widgets/spinning_mixed.dart
|
| +++ b/sky/examples/widgets/spinning_mixed.dart
|
| @@ -71,12 +71,8 @@ void rotate(double timeStamp) {
|
| transformBox.translate(transformBox.size.width / 2.0, transformBox.size.height / 2.0);
|
| transformBox.rotateZ(delta);
|
| transformBox.translate(-transformBox.size.width / 2.0, -transformBox.size.height / 2.0);
|
| -
|
| - // tester.checkFrame();
|
| }
|
|
|
| -final bool debugDisplayList = false; // set this to true to use the test rendering logic
|
| -
|
| void main() {
|
| // Because we're going to use UINodes, we want to initialise its
|
| // AppView, not use the default one. We don't really need to do
|
| @@ -84,7 +80,7 @@ void main() {
|
| // it's good practice in case we happen to not have a
|
| // RenderObjectToUINodeAdapter in our tree at startup, or in case we
|
| // want a renderViewOverride.
|
| - UINodeAppView.initUINodeAppView(renderViewOverride: debugDisplayList ? tester : null);
|
| + UINodeAppView.initUINodeAppView();
|
|
|
| RenderFlex flexRoot = new RenderFlex(direction: FlexDirection.vertical);
|
|
|
|
|