mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
[Effen] missed an underscore in the _ensureDepth() logic
TBR=eseidel Review URL: https://codereview.chromium.org/1056633002
This commit is contained in:
parent
ee63773cd1
commit
e3318005f4
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user