| Index: sky/sdk/lib/rendering/object.dart
|
| diff --git a/sky/sdk/lib/rendering/object.dart b/sky/sdk/lib/rendering/object.dart
|
| index c0f4525a08e99d356c728b5fc4b1444891c7aeb4..607d5b77150fa1734079a4a9e9b1c6fd5ceea4f5 100644
|
| --- a/sky/sdk/lib/rendering/object.dart
|
| +++ b/sky/sdk/lib/rendering/object.dart
|
| @@ -303,6 +303,9 @@ abstract class RenderObject extends AbstractNode implements HitTestTarget {
|
|
|
| static bool _debugDoingPaint = false;
|
| static bool get debugDoingPaint => _debugDoingPaint;
|
| + static void set debugDoingPaint(bool value) {
|
| + _debugDoingPaint = value;
|
| + }
|
| bool _debugDoingThisPaint = false;
|
| bool get debugDoingThisPaint => _debugDoingThisPaint;
|
| static RenderObject _debugActivePaint = null;
|
|
|