[Effen] missed an underscore in the _ensureDepth() logic

TBR=eseidel

Review URL: https://codereview.chromium.org/1056633002
This commit is contained in:
Hixie 2015-04-01 12:39:59 -07:00
parent ee63773cd1
commit e3318005f4

View File

@ -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;