Renamed toplevel to be top_level

This commit is contained in:
Duroxxigar
2020-10-01 03:17:33 -04:00
parent cbcec0d056
commit b687ace7f9
27 changed files with 110 additions and 110 deletions

View File

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