diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-10-02 10:57:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 10:57:23 +0200 |
commit | 19f72beebbf1d233eb2dd345ed70a5ac143e2353 (patch) | |
tree | 28c662bf150132e6f33271add84ff855cfe05767 /scene/gui/graph_node.cpp | |
parent | a1c27228ae6c160391133a0894880d977058da8f (diff) | |
parent | b687ace7f9465faa3d3aee271a8dc950c0d1ed4b (diff) | |
download | redot-engine-19f72beebbf1d233eb2dd345ed70a5ac143e2353.tar.gz |
Merge pull request #42451 from Duroxxigar/rename-toplevel
Renamed toplevel to be top_level
Diffstat (limited to 'scene/gui/graph_node.cpp')
-rw-r--r-- | scene/gui/graph_node.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index 01b54ddaa8..38bf31830f 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -102,7 +102,7 @@ void GraphNode::_get_property_list(List<PropertyInfo> *p_list) const { int idx = 0; for (int i = 0; i < get_child_count(); i++) { Control *c = Object::cast_to<Control>(get_child(i)); - if (!c || c->is_set_as_toplevel()) { + if (!c || c->is_set_as_top_level()) { continue; } @@ -131,7 +131,7 @@ void GraphNode::_resort() { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } @@ -156,7 +156,7 @@ void GraphNode::_resort() { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } @@ -388,7 +388,7 @@ Size2 GraphNode::get_minimum_size() const { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } @@ -477,7 +477,7 @@ void GraphNode::_connpos_update() { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } |