Chromium Code Reviews| Index: sky/framework/fn.dart |
| diff --git a/sky/framework/fn.dart b/sky/framework/fn.dart |
| index e01c34ddbc4f1a48cc2068b56ca8e8a524139e47..3663161e3ef79e154d4fe8503317b9040fdc4c5e 100644 |
| --- a/sky/framework/fn.dart |
| +++ b/sky/framework/fn.dart |
| @@ -95,7 +95,7 @@ abstract class UINode { |
| void _ensureDepth() { |
| if (_nodeDepth == null) { |
| if (_parent != null) { |
| - _parent.ensureDepth(); |
| + _parent._ensureDepth(); |
| _nodeDepth = _parent._nodeDepth + 1; |
| } else { |
| _nodeDepth = 0; |